Program giving short dump

I have created an alv grid display .But when am pressing
word processing or excel download buttons in the tool bar ,the program is giving short dump.The display and all are perfect the dump happens only if i press word processing or excel download buttons .Kindly help.
You help will be greatly appreciated.
The error is generated while in standard code.
1095                                     using r_ucomm
1096                                           ls_selfield.
1097
>>>>>   rs_stable-row = ls_selfield-row_stable.
1099   rs_stable-col = ls_selfield-col_stable.
1100
1101   r_refresh = ls_selfield-refresh.
1102   r_exit    = ls_selfield-exit.

Hii
plzz open excel in your computer .
goto TOOLS>MACRO>SECURITY .Make sure that your security is set to Medium (or less). Microsoft has increased their default security setting to High. With the High setting, the output to Excel fails.
plzz paste the part of the code where it is going for dump
and also give the error analysis as mentioned in the dump report
if you want i can give you a sample alv grid program for you can cross chk it
for more refer to this guide
<b>https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/an easy reference for alv grid control.pdf</b>
Regards
Naresh

Similar Messages

  • Custom error message in user exit is giving Short dump

    Hi All,
    We have a scenario where in if any user try to create/Change/Delete particular types of contract in SAP system we have to issue error message
    saying ZIN/ZIR contract creation/Change/Deletion is blocked in SAP. This has to be done from the web application. So we are putting below code
    in user exit MV45AFZZ in the form USEREXIT_SAVE_DOCUMENT_PREPARE.
    CONSTANTS: lc_vbcpic01 TYPE sy-uname VALUE u2018VBCPIC01u2019, u201CWeb application user ID
             lc_zin           TYPE vbak-auart VALUE u2018ZINu2019,
                         lc_zir            TYPE vbak-auart VALUE u2018ZIRu2019,
                         lc_text(32)    TYPE c VALUE u2018Check long text for more detailsu2019.
    DATA: l_uname TYPE sy-uname.
    CLEAR: l_uname.
    MOVE sy-uname TO l_uname.
    *If user ID is not the Web application ID then block the creation/Change/Deletion
    IF   l_uname NE lc_vbcpic01
    AND ( vbak-auart EQ lc_zin
    OR    vbak-auart EQ lc_zir ).
    MESSAGE e830(zv) WITH lc_text.
    ENDIF.
    This code is working fine while creating/Changing the contract i.e. Giving us error message so that user wonu2019t be able to create/change the contract.
    But when we delete the contract from VA42, Control is coming to this message statement and is giving Short dump. Below is the error analysis of the dump.
    Error Analysis:
    During "Exit Command" processing, the program tried to send a " " message.
    This is not allowed at this point in processing.
    The program had to be terminated.
    Screen name.............. "SAPMV45A"
    Screen number............ 4001
    If any one has come across such scenario/any work around for this problem please let me know your inputs. Your inputs are highly appreciated.
    I am working on 4.6C version of SAP.
    Note: When i issue information/Warning message contract is getting deleted after displaying the message.
    Thanks,
    Vinod.

    I exactly replicated the same in DELETE_DOCUMENT also
    I am getting the Dump. I tried with exit also , but it continued and deleted. To avoid deletion we have to use Leave program or LEAVE TO CURRENT TRANSACTION.
    Delete Function is Defined as EXIT command. so it is not possible to give error message. To convice you i just copied demo program and raised the error message.
    it is also giving the dump.
    copy the demo program DEMO_DYNPRO_AT_EXIT_COMMAND and make this change , information to error .
    MODULE cancel INPUT.
      MESSAGE e888(sabapdocu) WITH text-001 ok_code input1 input2.
      IF ok_code = 'CANCEL'.
        CLEAR ok_code.
        LEAVE PROGRAM.
      ENDIF.
    ENDMODULE.
    and see...

  • Maintenance View Giving Short Dump DYNPRO_FIELD_CONVERSION

    Hi,
    Client has a maintenance view for the table J_2IRG1BAL. But the maintenance view is giving short dump DYNPRO_FIELD_CONVERSION. Can anyone please tell me what could be the reason? How to solve it?
    Regards,
    Sriram.

    Hi,
    DYNPRO_FIELD_CONVERSION dump may be due to the following reason, you can find few OSS notes
    - Negative entry in Time confirmation
    - Negative entry in cost
    - Negative entry in reversation
    Check these just for reference.
      Please Refer the below link it will useful for u.
    DYNPRO_FIELD_CONVERSION
    dump while entering enteries trough sm30
    Regards,
    Dhina..

  • CL_GUI_CFW= FLUSH giving short dump

    hi,
    i have got two servers. one for development and other for quality. in development my CL_GUI_CFW=>FLUSH is working fine, but when i try to execute my prog in quality "flush method" is giving short dump, its returning sy-subrc <> 0.
    can anybody suggest possible causes of the same.
    The server status are all the same for quality as well as development.
    thanks
    pratyush

    Hello Pratyush
    You may want to have a look at my sample report ZUS_SDN_TWO_ALV_GRIDS_3 in thread
    [how to refresh the contents of a grid?|how to refresh the contents of a grid?;.
    Most control events do not trigger PAI of the dynpro. Thus, they behave similar like calling a search help or F1 help.
    The automatic flushing which occurs at PBO is done the following way:
    METHOD handle_user_command.
        * define local data
    DATA:
    ls_row TYPE lvc_s_row,
    ls_knb1 TYPE knb1.
    CHECK ( sender = go_grid1 ).
    CHECK ( e_ucomm = 'SAVE' ).
    CALL METHOD go_grid1->get_current_cell
    IMPORTING
    es_row_id = ls_row.
    READ TABLE gt_knb1 INTO ls_knb1 INDEX ls_row-index.
    CHECK ( ls_knb1-kunnr IS NOT INITIAL ).
    PERFORM entry_show_details.
    * Triggers PAI of the dynpro with the specified ok-code
    " CALL METHOD cl_gui_cfw=>set_new_ok_code( 'DETAIL' ).  " not on 4.6c
    CALL METHOD cl_gui_cfw=>set_new_ok_code
       EXPORTING
        ok_code = 'DETAIL'.
    ENDMETHOD. "handle_user_command
    Regards
      Uwe

  • Func. Module - RH_EDITOR_SET giving Short Dump

    Hello ,
    I am using a container in my proogram.While running this my program calls this function module and then it is giving a shortdump.The short text of that dump says "Exception condition "INTERNAL_ERROR" raised."
    the dump is coming at the line:
      163     CALL METHOD control_tab-ctrl_new->set_text_as_r3table
      164       EXPORTING
      165         table           = lines[]
      166       EXCEPTIONS
      167         error_dp        = 1
      168                        error_dp_create = 2.
      169     IF sy-subrc <> 0.
    >>>>>       RAISE internal_error.
      171     ENDIF.
      172   ENDIF.
    While calling this function module i am passing these parameters.
    CALL FUNCTION 'RH_EDITOR_SET'
        EXPORTING
          REPID       = SY-CPROG "program name
          DYNNR       = '0100' "screen number
          CONTROLNAME = VAR " name of the custom control on screen
          MAX_COLS    = COL "variable value = 85
          MAX_LINES   = 10
          DISPLAY_MODE = ' '
          SHOW_TOOL = ' '
        TABLES
          LINES       = IT_LINES_CR. " table type TLINE
    The strange thing is that this works fine in 4.6c but is giving a dump in ECC 6.0
    Can u please tell me what is the problem.
    Thanks in advance.
    Kunal

    Hi,
    There are lot of changes happened between 4.6C and ECC 6.0. so make sure about the dump analysis.
    Regards,
    Kumar.

  • ABAP Program Giving SAPSQL_ARRAY_INSERT_DUPREC Dump While Inserting Entries

    Hi Experts,
    I had z table in which i had made three fields as primary key combination , i also had a custom program in which i am inserting values into the z table using Insert statement. during the execution of the program it is going for a short dump giving "SAPSQL_ARRAY_INSERT_DUPREC" With Exception CX_SY_OPEN_SQL_DB.
    The Delivery Class of the Table is "C".
    The thing is that i want if 1st field is "ORG ID" second Field is "Material" & the third field is "Type Id". then the system should allow entries like
    ORG ID
    Material Id
    Type Id
    |"0001"    |       "100''         |       "R1"      |
    "0001"
    "100''
    "R2"
    |"0001"    |       "100''          |      "R3"     |
    "0001"
    "100''
    "R4"
    Is there any OSS note for Corrections.
    Thanks & regards
    Priyesh Shah.

    Hi
    Are you sure your table has those 3 fields as key fields?
    I means you make sure the fields: ORG ID, Material Id, Type Id are key fields.
    If you are sure the internal table has not duplicated records and your z-table is empty: It can only suppose some field is not a key.
    If you have made some modification, try to check the database defination of your z-table is equal to dictionary defination
    Max

  • TDMS - Program CNV_MBT_TS_PCL_DTL_REPAIR short dumps

    Trying to run the repair program in TDMS and it keeps short dumping.  ANyone seen this or have a fix to it provided by SAP?
    It fails with a message saying "NO_ACTPARAMS" and it looks like when it's trying to launch the following program...CNV_MBT_MT_ACPLANS_CALC
    Cheers,
    Anthony

    Dear Pallavi,
    Very useful post!
    I am looking for similar accelerators for
    Software Inventory Accelerator
    Hardware Inventory Accelerator
    Interfaces Inventory
    Customization Assessment Accelerator
    Sizing Tool
    Which helps us to come up with the relevant Bill of Matetials for every area mentioned above, and the ones which I dont know...
    Request help on such accelerators... Any clues?
    Any reply, help is highly appreciated.
    Regards
    Manish Madhav

  • Csv file load related issue: giving short dump

    Hi Experts,
    In BPS I have created a load csv planning function which load data from csv file. While I am executing the function it is showing successful message 'dta records generated' but ehen I press the save button it is giving a dump 'Exception condition "ILLEGAL_INPUT" raised.'.The same planning level and package is working fine with manual planning. The load function modules are also working fine for some other plannig levels. Please suggest what could be the reason for this exception.
    Thanks,
    Saikat.

    I had  same problem.
    It s something wrong in the CSV files. What I mean is that sometimes it went something like a ',' or a '.' or other wrong characters in some characteristics that cannot accept like numbers or whatever, or something that to you looks a blank but for SAP is some special character.
    The way to find is very boring ! Be sure first of all that when you load you do not try to save also the HEADER with Titles of the CSV file. Anyway this was not my problem.
    To me happened as follow last time.
    " For one rcharacteristic it accept values '1'  '2'  '3' etc...until '9'. So just numbers.  In one of the record of the files it was written '1.' So just the '.' made this big problem. "
    To solve this last time, I just generated again the file and without to change the ABAP code it went ok.
    Anyway try to check again from benning all your levels and the ABAP code.
    I know what u mean, this error cause big headaches, I lost 3 hours to solve.
    Hope you are lucky.

  • Customized Table is giving Short Dump .Want to extract data in Production S

    Hi ,
    I have a problem in customized table .Table is giving a data after trying to access 185th record.There is some problem in the table.But I want to pull out all the data from the table..Is it possible to download it .Pls suggest..
    Even If I put one select query also it is givning dump..
    Pls suggest some other technique to download it..
    Regards
    Arun.P

    Hi Arun,
    Where there you are using WHERE condition  in select statement while fetching the records?
    if yes means check for the fields are primary key, available in WHERE condition, or else create secondary index for those
    non Primary key Fields in WHERE condition.
    This may help you.
    Thanks and Regards,
    Prakash.K

  • KCLJ giving short dump

    Hi Experts,
    I am using KCLJ to transfer file data into SAP system through BDT Direct input. I am doing this in Incentive Commission Management system.
    I created a sender structure for Commission contract bundle and used this in KCLJ transaction.
    But when I am executing the KCLJ transaction I am getting a Runtime error. The Error says that the program could not execute because one of the statements could not be executed.
    The Sender structure program is automatically getting generated when i execute the transaction KCLJ with corresponding sender structure. So the program which got generated for this contains syntax errors.
    Have you ever experienced any such issues?
    Please let me know how to solve this issue?
    Thanks & Regards,
    Sreejith A P
    Moderator message - Cross post locked
    Edited by: Rob Burbank on Nov 4, 2009 9:42 AM

    Are you sure your connected to the R3 System?
    Can you replicate just 1 node?
    Can you do any extractions?
    The only reference to your error message is below, but not related:
    Re: Cube Manage - Dump Error

  • ABAP Program Short Dump in BW

    I have created a dynamic program which would read any table name as input parameter and print the contents. Its working if I use  a small table(3 fields) and the same program is throwing short dump if pass a big table.
    Shortdump
    "SAPSQL_SELECT_TAB_TOO_SMALL" C           
    "ZBW_DYNAMIC_ITAB1" or "ZBW_DYNAMIC_ITAB1"
    "START-OF-SELECTION"                      
    Error in the line below
       61                                  
       62 * Select Data from table.        
    >>>>> select * into table <dyn_table>  
       64            from (p_table).       
       65                                
    Program
    *& Report  ZBW_DYNAMIC_ITAB1
    REPORT  ZBW_DYNAMIC_ITAB1.
    type-pools: slis.
    field-symbols: <dyn_table> type standard table,
                   <dyn_wa>,
                   <dyn_field>.
    data: alv_fldcat type slis_t_fieldcat_alv,
          it_fldcat type lvc_t_fcat.
    type-pools : abap.
    data : it_details type abap_compdescr_tab,
           wa_details type abap_compdescr.
    data : ref_descr type ref to cl_abap_structdescr.
    data: new_table type ref to data,
          new_line  type ref to data,
          wa_it_fldcat type lvc_s_fcat.
    selection-screen begin of block b1 with frame title text .
    parameters: p_table(30) type c.
    selection-screen end of block b1.
    Get the structure of the table.
    ref_descr ?= cl_abap_typedescr=>describe_by_name( p_table ).
    it_details[] = ref_descr->components[].
    loop at it_details into wa_details.
      clear wa_it_fldcat.
      wa_it_fldcat-fieldname = wa_details-name .
      wa_it_fldcat-datatype = wa_details-type_kind.
      wa_it_fldcat-intlen = wa_details-length.
      wa_it_fldcat-decimals = wa_details-decimals.
      append wa_it_fldcat to it_fldcat .
    endloop.
    Create dynamic internal table and assign to FS
    call method cl_alv_table_create=>create_dynamic_table
                 exporting
                    it_fieldcatalog = it_fldcat
                 importing
                    ep_table        = new_table.
    assign new_table->* to <dyn_table>.
    Create dynamic work area and assign to FS
    create data new_line like line of <dyn_table>.
    assign new_line->* to <dyn_wa>.
    Select Data from table.
    select * from (p_table) into table <dyn_table>
    Write out data from table.
    loop at <dyn_table> into <dyn_wa>.
      do.
        assign component  sy-index  of structure <dyn_wa> to <dyn_field>.
        if sy-subrc <> 0.
          exit.
        endif.
        if sy-index = 1.
          write:/ <dyn_field>.
        else.
          write: <dyn_field>.
        endif.
      enddo.
    endloop.

    Hi,
    The dynamic table that is generated is not converting the exact output length in case of packed numbers.
    Foe eg : If there is an packed field of length 7 , the dynamic table is converting it to Char 7 , but the actual output length of Pack 7 is 15.Hence it is giving short dump saying that Internal Table length is not sufficient.
    Probably it might have worked for smaller tables for you because you might not have used Packed field in there.
    Regards,
    Vijay.

  • Short dump while executing info package in 3.5 data flow?

    Hi,
    i am getting short dump while executing info package while executing info package. it was working perfectly 2 days back suddenly it is giving this problem. it is a full load for info object text data and i have only 600 records. when i tried with " only info package" it is working perfectly n bringing the data into PSA. But when i use "PSA and the into data target" it is giving short dump.
    i replicated Data source and also i activated transfer rules, update rules still it is not working. When i check with another info objects it is working perfectly fine. i dont know what is wrong with only particular info object.
    Please find attached short dump.
    Thanks

    Hi,
    When you load transaction data I think there is a deadlock.
    Check in the process overview (transaction SM50) the waiting processes are in program SAPLSENA .
    The program SAPLSENA is the lock handler tool.
    Also check if  ACR is running on this target while your load is happening.
    Check in SM12 if there are any lock entries for the Infoobject to which you are loading data and on RSICCONT table .
    Try reloading after deleting the locks manually.
    Regards.

  • Short Dump while fetching values from a Database view

    Hi ALL,
    Here is the code that is giving short dump
    SELECT * FROM ZVMATLMOVE INTO TABLE I_MATLMOVE
        WHERE BUDAT >= V_LASTRUN_DATE
        AND   WERKS IN S_WERKS
        AND   LIFNR IN S_LIFNR
        AND   EBELN IN S_EBELN
        AND   MATNR IN S_MATNR
        AND   BWART IN S_BWART
    (Please don't say that I am using * in the select query,
    I knew that it is not a good way of fetching values)
    Declaration of the internal table is:
    DATA  I_MATLMOVE LIKE ZVMATLMOVE OCCURS 0 WITH HEADER LINE.
    The variable V_LASTRUN_DATE is:
    DATA  V_LASTRUN_DATE LIKE SY-DATUM.
    We will be getting the lastrundate value from another table. And it is passing correct value (ex. 20060731)
    ZVMATLMOVE is a database view created for MKPF and MSEG table. And I checked both table were consistent.
    Dump Analysis:
    Runtime errors         DBIF_RSQL_SQL_ERROR          
    Exception              CX_SY_OPEN_SQL_DB
    Every thing is fine. But I don't know how it is going to dump. Any suggestions?

    Hi !
    It seams that your table is not correct / fully activated.
    To check it out you should try the following:
    - Go to the SE11
    - Give it your table name and go to "Display"
    - Check if the table is "active"
    - Choose "Utilities->Database Object->Check" and see
      if there are any errors
    - go back and choose "Utilities->Runtime Object->Check"
      and see if there are any errors
    If there are any errors - try to activate the table again. You may need the "Utilities->Database Utiliy" for that.
    After there are no more errors by checking all these your program should work.
    Regards
    Rainer
    Some points would be nice if thate helped a bit.

  • Purchase order print preview - Short Dump - in ME23N

    Dear Experts,
                         I am doing PO layout in PDF format . When i see print preview in me23n transaction its displaying as PDF format.
    when i close the output selection popup screen its giving short dump, saying that ' A RAISE statement in the
    program "CL_HANDLE_MANAGER_MM==========CP" raised the  exception condition "FAILURE". Pls let me know if
    anybody come across this issue.
    Thanks & Regards
    Ramesh Manoharan.

    Hi,
    Dump is a result of common work area 'cleanup' procedure inside BAPI_PO_GETDETAIL1 (module cleans memory area which transaction ME2xN expects to be filled).
    Luckily you are able to turn off this code section by adding some MM tool method call just before calling FM BAPI...
    you need only one code line - worked perfectly in my case:
    cl_mmpur_bapi_po=>put_repid( im_repid = sy-repid ).
    CALL FUNCTION 'BAPI_PO_GETDETAIL1'
         EXPORTING..............
    Regards,
    Rafał Szczerba

  • Business Graphic working but short dumping when 'No Data' is available

    Dear Experts,
    I am trying to plot a graph (Bar chart) and it is working very well except when these is no data. In that instance instead of not displaying a data, it is giving short dump.
    I am trying to plot a graph for a project from a list of the projects. In the Context, List of projects is a parent node while the cost data (used for drawing graph) is on child node. Both are with the cardinality of 0..n
    When the project has cost data, graph is working beautifully but when the project does not have a cost data i get short dump.
    Here is the what I get in Internet explorer.
    The following error text was processed in the system UPG : Access via 'NULL' object reference not possible.
    The error occurred on the application server SAPSANDPIT_UPG_00 and in the work process 2 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CBUSINESS_GRAPHICS======CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C7STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program CL_WDR_VIEW_ADAPTER===========CP
    Method: IF_WDR_NW7_DELTA_RENDERER~CALCULATE_DELTA_BLOCKS of program CL_WDR_VIEW_ADAPTER===========CP
    Method: IF_WDR_NW7_DELTA_RENDERER~CALCULATE_DELTA_BLOCKS of program CL_WDR_WINDOW_CONTENT_ADAPTER=CP
    Method: SET_CONTENT of program CL_WDR_NW7_INT_WIN_ADAPTER====CP
    Method: SET_CONTENT of program CL_WDR_NW7_MAIN_WIN_ADAPTER===CP
    Method: IF_WDR_CLIENT~SEND_RESPONSE of program CL_WDR_CLIENT_SSR_LS==========CP
    And here is what is in ST22
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED_NO
    Exception              CX_SY_REF_IS_INITIAL          
    Error analysis                                                                    
        An exception occurred that is explained in detail below.                      
        The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not     
         caught in                                                                    
        procedure "IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT" "(METHOD)", nor was it    
         propagated by a RAISING clause.                                              
        Since the caller of the procedure could not have anticipated that the         
        exception would occur, the current program is terminated.                     
        The reason for the exception is:                                              
        You attempted to use a 'NULL' object reference (points to 'nothing')          
        access a component.                                                           
        An object reference must point to an object (an instance of a class)          
        before it can be used to access components.                                   
        Either the reference was never set or it was set to 'NULL' using the          
        CLEAR statement.                                                              
    Problem is at following point
                                                                                    mv_CHARTDATA = mv_DATA->create_simple_element( name = 'ChartData' parent = mv_DATA ). "#
    *   >> END_UCA BUSINESS_GRAPHICS|BUSINESS_GRAPHICS|CHARTDATA                                                                               
    *   >> Property: Get BUSINESS_GRAPHICS-SERIES_SOURCE                                       
        mv_SERIES_SOURCE =  get_bound_node( i_binding = wd_BUSINESS_GRAPHICS->bp_SERIES_SOURCE )
                                                                                    *   >> Property: UCA BUSINESS_GRAPHICS-SERIES_ELEMENTS                                     
    *   >> UCA BUSINESS_GRAPHICS|BUSINESS_GRAPHICS|SERIES_ELEMENTS                                                                               
    mv_SERIES_ELEMENTS = mv_SERIES_SOURCE->get_elements( ).                                
    *   >> END_UCA BUSINESS_GRAPHICS|BUSINESS_GRAPHICS|SERIES_ELEMENTS                                                                               
    *   >> Property: UCA BUSINESS_GRAPHICS-SERIES_SOURCE_PATH                                  
    *   >> UCA BUSINESS_GRAPHICS|BUSINESS_GRAPHICS|SERIES_SOURCE_PATH                          
    mv_SERIES_SOURCE IN in above code is initial when data does not exists for a project.
    Thanks in advance for your help.
    ABAPer

    Forgot to add following info from ST22
    Information on where terminated                                                              
        Termination occurred in the ABAP program "/1WDA/CBUSINESS_GRAPHICS======CP" -            
         in "IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT".                                           
        The main program was "SAPMHTTP ".                                                                               
    In the source code you have the termination point in line 753                            
        of the (Include) program "/1WDA/CBUSINESS_GRAPHICS======CCIMP".                          
        The termination is caused because exception "CX_SY_REF_IS_INITIAL" occurred in           
        procedure "IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT" "(METHOD)", but it was               
         neither handled locally nor declared                                                    
        in the RAISING clause of its signature.                                                                               
    The procedure is in program "/1WDA/CBUSINESS_GRAPHICS======CP "; its source              
         code begins in line                                                                     
        390 of the (Include program "/1WDA/CBUSINESS_GRAPHICS======CCIMP ".                      
    Thanks
    ABAPer

Maybe you are looking for

  • Creation of  Agent  in WE20

    Dear All, We are not sure that in which module our requirement will fit. We like to create new Agent (permitted id) in WE20. The details are as under Table :VEDI_TDPP1 Field Name :USRKEY Data Element: EDIPUSRKEY Can you kindly us now how to create it

  • Sound Blaster World of Warcraft Headset LED Trouble

    I recently purchased this headset which i'm using on Windows 7. Each time I plug the headphones into my PC, the lights on the ear pieces turn on but after 10 minutes or so, the always switch off. I have to unplug and replug them back in so the lights

  • Re: Error relating to material code when raising PR

    Dear all, I came acrossed the error "Material not subject to inventory management in plant XXXX" when trying to raise a PR by entering the material code. Checking the material created, the material is active and has been properly maintained by Purcha

  • PGI Concept?

    Hi, Does PGI creates any accounting document? Also I would like to know that PGI means that the delivery is complete and the goods are issued to the customer.Please suggest if my concept of PGI is correct?

  • Upgrade from 4.7 to ECC 6.0 - Blank XML fields not transfered via Proxy

    Hello, I have a proxy that was sending all fields via a proxy to our PI system for  mapping.  Now after we upgraded to ECC 6.0 the XML document from the backend is missing all the empty XML tags.  Why did this happen?  How can I get my blank XML tags