GETWA_NOT_ASSIGNED

HI ALL,
  When i am seeing the data in cube (0sd_c03) i got runtime error "GETWA_NOT_ASSIGNED".
ShrtText
    Field symbol has not yet been assigned.
What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLRSDQ" had to be terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
  Please help me anyone.
Thanks
sada.k

hi Sadasivarao,
have you solved this Short Dump Problem... am getting the same dump error GETWA_NOT_ASSIGNED because field symbol is not assigned... How did you solve it...
can you let me know at the earliest....
Thanks & Regards
Manicks

Similar Messages

  • Runtime Error  -GETWA_NOT_ASSIGNED when running COI

    Hi ALL,
    We are getting run time error -  GETWA_NOT_ASSIGNED when running COI tasks.
    Error analysis
         You attempted to access an unassigned field symbol
         (data segment 32995).
         This error may occur for any of the following reasons:
         - You address a typed field symbol before it is set using ASSIGN
         - You address a field symbol that points to a line in an internal table
           that has been deleted
         - You address a field symbol that had previously been reset using
           UNASSIGN, or that pointed to a local field that no longer exists
        - You address a global function interface parameter, even
          though the relevant function module is not active,
          that is it is not in the list of active calls. You can get the list
          of active calls from the this short dump.
    How to correct the error
        You may able to find an interim solution to the problem
        in the SAP note system. If you have access to the note system yourself,
        use the following search criteria:
        "GETWA_NOT_ASSIGNED" C
        "CL_UC_COI_ACT_PT==============CP" or "CL_UC_COI_ACT_PT==============CM00P"
        "REDUCE_GOODWILL_ENTRIES"
        If you cannot solve the problem yourself and you wish to send
        an error message to SAP, include the following documents:
        1. A printout of the problem description (short dump)
           To obtain this, select in the current display "System->List->
           Save->Local File (unconverted)".
    2. A suitable printout of the system log
        To obtain this, call the system log through transaction SM21.
        Limit the time interval to 10 minutes before and 5 minutes
        after the short dump. In the display, then select the function
        "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
        supply the source code.
        To do this, select the Editor function "Further Utilities->
        Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
        or which actions and input led to the error.
    Information on where terminated
        The termination occurred in the ABAP program "CL_UC_COI_ACT_PT==============CP"
         in "REDUCE_GOODWILL_ENTRIES".
        The main program was "UCUWB000 ".
        The termination occurred in line 722 of the source code of the (Include)
         program "CL_UC_COI_ACT_PT==============CM00P"
        of the source code of program "CL_UC_COI_ACT_PT==============CM00P" (when
         calling the editor 7220).
    702   call method do_inv_net_change->create_data_reference
    703     exporting
    704       i_type   = cl_uc_coi_inv_net=>gc_ref_pt_block
    705       io_model = do_model
    706     importing
    707       er_data  = lr_t_data.
    708   assign lr_t_data->* to <lt_share_block>.
    709   call method do_inv_net_change->get_block
    710     importing
    711       et_pt_shares = <lt_share_block>.
    712
    713   create data lr_s_data like line of <lt_share_block>.
    714   assign lr_s_data->* to <ls_share_block>.
    715 * change due to selling invor's transaction
    716   read table <lt_share_block> into <ls_share_block> index 1.
    717
    718 * direct shares prior to divestiture
    719   assign component 'R_TH_DSH_OLD'
    720     of structure <ls_share_block> to <lr_th_dsh_old>.
    721   assign <lr_th_dsh_old>->* to <lt_dsh_old>.
    >>>>   create data lr_s_data like line of <lt_dsh_old>.
    723   assign lr_s_data->* to <ls_dsh_old>.
    724   assign component ucf6_cs_coi_fld-pcnt1
    725     of structure <ls_dsh_old> to <pcnt1_7a>.
    726
    727 * change of direct shares in divestiture
    Please provide your suggestions.
    Edited by: VM2727 on Feb 10, 2012 3:27 AM

    Or even these ones:
    SAP Note 1480856 - C/I: Program termination GETWA_NOT_ASSIGNED
    Symptom
    When you execute the consolidation of investments, a program termination
    occurs (short dump GETWA_NOT_ASSIGNED in the method CREATE_OCI_LIST of the
    class CL_UC_COI_ACT).
    Note 1467924 - Termination GETWA_NOT_ASSIGNED in CL_UC_COI_ACT_PD
    Symptom
    When you execute the consolidation of investments, the program termination GETWA_NOT_ASSIGNED occurs in the method CALC_NET_INCOME_MEM of the class CL_UC_COI_ACT_PD.

  • GETWA_NOT_ASSIGNED in RMVKON00 (background job)

    Hello everyone
    We're having the following recurring problem:
    There's a job running the first of every month, it uses an ALV GRID with this statement: REUSE_ALV_GRID_DISPLAY.
    When it's run normally (not scheduled) it works perfectly, but when it is scheduled we get a GETWA_NOT_ASSIGNED shortdump.
    We have adjusted RMVKON00 (to ZRMVKON00) to add 2 columns to the ALV display by following the strategy of creating a work area and adding it to the ALV's internal table structure.
    Function call Code
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'             
           EXPORTING                                     
                i_buffer_active          = space         
                i_callback_program       = c_repid       
                i_callback_pf_status_set = c_pf_status_set
                i_callback_user_command  = c_user_command
                i_structure_name         = 'I_TAB'       
                it_fieldcat              = tab_fieldcat[]
                it_sort                  = tab_sort[]    
                is_layout                = s_layout      
                i_save                   = c_save        
                is_variant               = s_variant     
                it_events                = tab_events[]  
           TABLES                                        
                t_outtab                 = i_tab.        
    I_TAB setup
    TYPES: BEGIN OF watype,
            mandt  LIKE rkwa-mandt,
            mblnr  LIKE rkwa-mblnr,
            mjahr  LIKE rkwa-mjahr,
            zeile  LIKE rkwa-zeile,
            status LIKE rkwa-status,
            bldat  LIKE rkwa-bldat,
            budat  LIKE rkwa-budat,
            bukrs  LIKE rkwa-bukrs,
            sobkz  LIKE rkwa-sobkz,
            lifnr  LIKE rkwa-lifnr,
            werks  LIKE rkwa-werks,
            matnr  LIKE rkwa-matnr,
            shkzg  LIKE rkwa-shkzg,
            gsber  LIKE rkwa-gsber,
            bwaer  LIKE rkwa-bwaer,
            wrbtr  LIKE rkwa-wrbtr,
            bstme  LIKE rkwa-bstme,
            bstmg  LIKE rkwa-bstmg,
            hkont  LIKE rkwa-hkont,
            mwskz  LIKE rkwa-mwskz,
            belnr  LIKE rkwa-belnr,
            gjahr  LIKE rkwa-gjahr,
            buzei  LIKE rkwa-buzei,
            navnw  LIKE rkwa-navnw,
            prctr  LIKE rkwa-prctr,
            text   LIKE zconalv-text,
            name1  LIKE lfa1-name1,
            maktx  LIKE makt-maktx,
           END OF watype.
    DATA: alv_itab TYPE watype.
    I_TAB fill in FORM alv_list
    Fill itab with current rkwa table, and add corresponding
    Vendor name & Material Desc.
    DATA: i_tab TYPE TABLE OF watype,
          i_tabRow TYPE watype.
    LOOP AT t_alv_list.
      MOVE-CORRESPONDING t_alv_list TO i_tabRow.
      SELECT SINGLE name1 INTO i_tabRow-name1
      FROM LFA1
      WHERE lifnr = t_alv_list-lifnr.
      SELECT SINGLE maktx INTO i_tabRow-maktx
      FROM MAKT
      WHERE matnr = t_alv_list-matnr.
      INSERT i_tabRow INTO TABLE i_tab.
    This is an extract of the shortdump:
    Transaction......... " "                                                 
    Program............. "SAPLKKBL "                                         
    Screen.............. "SAPLKKBL 0500"                                     
    Screen line......... 3                                                                               
    Information on where termination occurred                                                                               
    The termination occurred in the ABAP/4 program "SAPLKKBL " in            
    "CHECKBOX_OUT".                                                          
    The main program was "ZRMVKON00 ".                                                                               
    The termination occurred in line 1148                                    
    of the source code of program "LKKBLF01 " (when calling the editor 11480).
    The program "SAPLKKBL " was started as a background job.                 
    Any help is much appreciated.
    Edit: shortdump extract added
    Message was edited by: Tim Schraepen

    I have found the thing that was causing the error!
    If you look at the short dump it says something about program LKKBLF01 on line 1148.
    I went to take a look at that line.
    <i>  if not r_sum is initial or <box> = '-'.</i>
    That <box> statement got me thinking that the layout could be the cause, so I commented out the layout parameter line like this:
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                i_buffer_active          = space
                i_callback_program       = c_repid
                i_callback_pf_status_set = c_pf_status_set
                i_callback_user_command  = c_user_command
                i_structure_name         = 'ZRKWA'
               i_structure_name         = 'T_ALV_LIST'
                it_fieldcat              = tab_fieldcat[]
                it_sort                  = tab_sort[]
    <b>*            is_layout                = s_layout</b>            i_save                   = c_save
                is_variant               = s_variant
                it_events                = tab_events[]
           TABLES
               t_outtab                 = i_tab.
              t_outtab                 = t_alv_list.
    And it worked!
    Here's an important note I found in the documentation about that parameter:
    <i>Interaction
    box_fieldname
    Value range: SPACE, field name of the internal output table
    If the list should have checkboxes at the beginning of each list row (to allow the user to select multiple rows at once), you must fill this parameter with the field name of the internal output table that represents the selection column for selecting rows with the help of checkboxes.
    The field is always displayed as a checkbox at the beginning of each list row without a list heading.</i>
    I don't know why this has something to do with it, but my problem is solved. I will look into it further and update when I've found a better solution.
    Thank you for all your help Christian.
    I really appreciate it.

  • GETWA_NOT_ASSIGNED error while scheduling job through F9

    Hi All,
    i am getting <b>GETWA_NOT_ASSIGNED</B> dump while scheduling a job through F9 and giving local printer as LP01.
    any pointers regarding this ?
    thanks
    kunal kishan

    Hi Ankesh,
    can you please elaborate on this.???
    Basiclly when i am trying to schedule a job by pressing F9 and setting it to immediate. when i chek in SM36, the job gets cancelled. The dump says "GETWA_NOT_ASSIGNED" error. The source code where the error is soming is a refresh statement.

  • Short Dump  while scrolling on the ALV (GETWA_NOT_ASSIGNED)

    Hi All,
    I have an interactive ALV list, After the user double click on the list line item,
    the list control goes to top of the list.
    When i want to scroll  for further interaction, I am getting  a Short dump  GETWA_NOT_ASSIGNED.
    Please advice
    Solomon

    Hi
    Please find the ALV code
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = hf_repid
          i_callback_user_command  = 'USER_COMMAND'
          i_callback_pf_status_set = 'SET_PF_STATUS'
          it_fieldcat              = int_fieldcat[]
          it_sort                  = int_sort[]
          is_layout                = fs_layout
          i_save                   = 'A'
          is_variant               = alv_variant
          it_events                = int_events[]
        TABLES
          t_outtab                 = i_bsid
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
    ENDFORM.                               " write_alv_report
    FORM user_command *
    FORM user_command USING ucomm LIKE sy-ucomm
    selfield TYPE slis_selfield.
      IF selfield-tabindex GE 1.
        check sy-ucomm <> 'POST'.
        READ TABLE i_bsid into i_bsid_alv INDEX selfield-tabindex.
        CASE I_BSID-CHECK.
          WHEN SPACE.
            I_BSID-CHECK = 'X'.
          WHEN OTHERS.
            I_BSID-CHECK = ''.
        ENDCASE.
        MODIFY I_BSID TRANSPORTING CHECK  WHERE matchkey = i_bsid_alv-matchkey.
      ENDIF.
      selfield-refresh = 'X'.
    *CLEAR selfield.
    ENDFORM.                    "user_command
    FORM SET_PF_STATUS *
    FORM set_pf_status USING extab TYPE slis_t_extab.
      data : lv_answer(1) TYPE c.
      SET PF-STATUS 'S200'.
      IF SY-UCOMM = 'POST'.
        I_BSID_ALV1[] =  I_BSID[].
        DELETE I_BSID_ALV1 WHERE CHECK  = SPACE.
        CLEAR I_BSID[].
        I_BSID[] = I_BSID_ALV1[].
      ENDIF.
    2. when I double click on the ALV list line item, after the line is selected the control goes to the top of the list.
    I have already setup the ALV menu bar.

  • Short dump GETWA_NOT_ASSIGNED while transporting Datasource in BI 7.0

    Hi Friends,
    I am getting an error, while trying to transport Datasource into quality system. The Transport request log says that "Program terminated (job: RDDEXECL, no.: 11372100)"
    If I check the log in SM37 of target system it gives following steps
    29.06.2007 11:37:21 Job started
    29.06.2007 11:37:21 Step 001 started (program RDDEXECL, variant , user ID DDIC)
    29.06.2007 11:37:21 All DB buffers of application server bdhp4488 were synchronized
    29.06.2007 11:37:30 SQL: 29.06.2007 11:37:30 DDIC
    29.06.2007 11:37:30  CREATE UNIQUE INDEX "/BIC/B0000566001~0" ON
    29.06.2007 11:37:30 "/BIC/B0000566001" ("REQUEST", "DATAPAKID",
    29.06.2007 11:37:30 "PARTNO", "RECORD") PCTFREE 10 LOCAL INITRANS 002
    29.06.2007 11:37:30 TABLESPACE PSAPSR3 STORAGE (INITIAL
    29.06.2007 11:37:30 0000000016 K NEXT        0000000160 K MINEXTENTS
    29.06.2007 11:37:30 0000000001
    If I see the short dump in ST22 in target system (quality) The I get error
    "Runtime Errors         GETWA_NOT_ASSIGNED"
    Could somebody help me in resolving this?
    Thanks and regards,
    Balaraj

    Thanks Edwin,
    My issue is still not resolved.
    Now the error that I am getting while transporting the Transformation is
    Program terminated (job: RDDEXECL, no.: 12091300)
    The SM37 job log says that
    "Job started
    Step 001 started (program RDDEXECL, variant , user ID DDIC)
    All DB buffers of application server bdhp4488 were synchronized
    ABAP/4 processor: GETWA_NOT_ASSIGNED
    Job cancelled"
    When i see the dump in ST22. It says that it could not find entry in one of the tables
    "   READ TABLE p_t_mapping ASSIGNING <fs_map>
       WITH KEY target_stepid = 0
                targetsegid   = <fs_posit>-rulesegid
                targetposit   = <fs_posit>-ruleposit
                targetid      = 0.
    Sy-subrc <> 0 for this read.
    Could you please advise?
    Thanks and regards,
    Balaraj

  • GETWA_NOT_ASSIGNED - Runtime Error in MIGO

    Dear All
    I am receiving GETWA_NOT_ASSIGNED - Runtime Error in MIGO transaction for a particular user only in production system. I am not able to narrow down is this transaction specific or user issue.  I searched the forum and not able to get reason.  If someone knows about ths kindly give me a hint.
    Regards,
    Venkat

    Hi,
    Please check if any User Exit BADI implemented and have a look into below thread
    Reg Dump in MIGO Transaction
    GETWA_NOT_ASSIGNED run time error_MIGO processing stock transport order
    Shiva

  • GETWA_NOT_ASSIGNED error while running abap prog in process chain

    Hi.
    I am getting a runtime error GETWA_NOT_ASSIGNED while running an ABAP program in process chain.
    But when i execute pro in SE38 , it's not giving any error.
    Please any one can suggets what will be error.

    Hi,
      i also used to get error for a program executed through process chain but when it is executed in se38 it used to work... that is because my program try to access a application server folder and reads the file from there... the authorisation to this is not proper through process chain ..... once authorisation to the folder was given properly .. i am able to run...
      Such things can happen in your case also... Try to analyse the dump in st22.... what happened ...
    Regards
    vamsi

  • Error in GETWA_NOT_ASSIGNED in VL10A

    Dear All,<br><br>
          Recently we upgrade 4.6c to ECC 6. After that we have a problem, while we run the Sales return useing VL10A in background, it's going to dump.<br><br>
    <br>Error is,
           <pre>GETWA_NOT_ASSIGNED.
    What happened?                                                              
        Error in the ABAP Application Program
        The current ABAP program "SAPLV50S" had to be terminated because it has 
        come across a statement that unfortunately cannot be executed.     
    Error analysis  
        You attempted to access an unassigned field symbol
        (data segment 466).                        
        This error may occur if
        - You address a typed field symbol before it has been set with
          ASSIGN                                         
        - You address a field symbol that pointed to the line of an
          internal table that was deleted                       
        - You address a field symbol that was previously reset using
          UNASSIGN or that pointed to a local field that no      
          longer exists                                           
        - You address a global function interface, although the
          respective function module is not active - that is, is     
          not in the list of active calls. The list of active calls    
          can be taken from this short dump.                       
    *Trigger Location of Runtime Error *   
        Program                                 SAPLV50S
        Include                                 /SPE/V50SF07
        Row                                     437
        Module type                             (FORM)
        Module Name                             /SPE/RET_HUS_GET
    429 ****************************************************
    430 *  This should only run in delivery item processing     
    431 ****************************************************        
    432   CHECK if_get_hus IS INITIAL.                              
    433  
    434
    435
    436 *...First: Read corresponding item(s) of HU(S) to delivery item
    >>>>   LOOP AT verpo_tab ASSIGNING <fs_verpo_tab> WHERE vbeln = xlips-vbeln AND
    438                                                    posnr = xlips-posnr.
    439
    440 *...Second: Read corresponing HU head send by EWM for necessary compare of VENUM
    441                 
    442     READ TABLE verko_tab INTO ls_verko_tab WITH KEY venum = <fs_verpo_tab>-venum
    443                                                                    BINARY SEARCH.
           <fs_verko_tab>  local data field was not found in subroutine SAPLV50S</pre>
    <br><br>
          Please could you help me as soon as possible.
    <br><br>
    Thanks & Regards,<br>
    Ahmed Arsath. A
    <br><br>
    Edited by: Ahmed Arsath Abdul Azees on Dec 15, 2009 7:48 AM
    <br><br>Edited by: Matt on Dec 15, 2009 12:48 PM - fixed formatting

    The code is
    LOOP AT verpo_tab ASSIGNING <fs_verpo_tab> WHERE vbeln = xlips-vbeln AND
                                                     posnr = xlips-posnr.
    Total nonsense to say that the problem is caused by verpo_tab being empty.
    As I've already said: unless this is part of a user exit it is standard SAP code.   The original poster hasn't left anything out! Therefore OSS is the correct place to look.
    Edited by: Matt on Dec 15, 2009 4:52 PM

  • T-code MDBT runtime error  GETWA_NOT_ASSIGNED

    Hell everyone.
    I copied a client from another client,then I runned MRP in the new client by T-code MDBT.
    It happened an error.
    Can anybody tell me how I can reslove this issue?
    Thanks & Best regards!
    The detail error as below:
    Runtime Errors         GETWA_NOT_ASSIGNED
    Date and Time          2010.06.19 11:01:46
    Kurztext
         Field symbol has not yet been assigned.
    发生了什么?
         Error in ABAP application program.
         The current ABAP program "FCR05205" had to be terminated because one of the
         statements could not be executed.
         This is probably due to an error in the ABAP program.
    你能做什么?
         Print out the error message (using the "Print" function)
         and make a note of the actions and input that caused the
         error.
         To resolve the problem, contact your SAP system administrator.
         You can use transaction ST22 (ABAP Dump Analysis) to view and administer
          termination messages, especially those beyond their normal deletion
         date.
         is especially useful if you want to keep a particular message.
    错误分析
        You attempted to access an unassigned field symbol
        (data segment 11).
        This error may occur for any of the following reasons:
        - You address a typed field symbol before it is set using ASSIGN
        - You address a field symbol that points to a line in an internal table
          that has been deleted
        - You address a field symbol that had previously been reset using
          UNASSIGN, or that pointed to a local field that no longer exists
        - You address a global function interface parameter, even
          though the relevant function module is not active,
          that is it is not in the list of active calls. You can get the list
          of active calls from the this short dump.
    如何更正此错误
        You may able to find an interim solution to the problem
        in the SAP note system. If you have access to the note system your
        use the following search criteria:
        "GETWA_NOT_ASSIGNED" C
        "FCR05205" or "FCR05F00"
        "PUT_P_VGWXX"
        If you cannot solve the problem yourself and you wish to send
        an error message to SAP, include the following documents:
        1. A printout of the problem description (short dump)
           To obtain this, select in the current display "System->List->
           Save->Local File (unconverted)".
        2. A suitable printout of the system log
           To obtain this, call the system log through transaction SM21.
           Limit the time interval to 10 minutes before and 5 minutes
           after the short dump. In the display, then select the function
           "System->List->Save->Local File (unconverted)".
        3. If the programs are your own programs or modified SAP programs,
           supply the source code.
           To do this, select the Editor function "Further Utilities->
           Upload/Download->Download".
      4. Details regarding the conditions under which the error occurred
         or which actions and input led to the error.
    Edited by: lzjsdxg on Jun 19, 2010 6:35 AM

    Are there anybody can help me?
    Thanks!

  • ABAP dump "GETWA_NOT_ASSIGNED" C

    HI,
    kindly suggest we are getting a abap dump while downloading a file and when i check the error in service market place its shows that we have to apply  support packages.can i directly apply support packages by downloading the market or i have to raise a query fro exact support packages to market place.
    my version-mssql2005-ecc5-640version.
    kindly see the below abap dump.
    Runtime Error          GETWA_NOT_ASSIGNED                                                          
    Date and Time          21.10.2008 11:25:01                                                         
    ShrtText                                                                               
    Field symbol has not yet been assigned.                                                       
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "SAPLKKBL" had to be terminated because one of the                   
        statements could not be executed.                                                                               
    This is probably due to an error in the ABAP program.                                         
    What can you do?                                                                               
    Print out the error message (using the "Print" function)                                      
        and make a note of the actions and input that caused the                                      
        error.                                                                               
    To resolve the problem, contact your SAP system administrator.                                
        You can use transaction ST22 (ABAP Dump Analysis) to view and administer                      
         termination messages, especially those beyond their normal deletion                          
        date.                                                                               
    is especially useful if you want to keep a particular message.                                
    Error analysis                                                                               
    You attempted to access an unassigned field symbol                                            
        (data segment 169).                                                                               
    This error may occur for any of the following reasons:                                        
        - You address a typed field symbol before it is set using ASSIGN                              
        - You address a field symbol that points to a line in an internal table                       
          that has been deleted                                                                       
        - You address a field symbol that had previously been reset using                             
          UNASSIGN, or that pointed to a local field that no longer exists                            
        - You address a global function interface parameter, even                                     
          though the relevant function module is not active,                                          
          that is it is not in the list of active calls. You can get the list                         
          of active calls from the this short dump.                                                                               
    How to correct the error                                                                               
    You may able to find an interim solution to the problem                                       
        in the SAP note system. If you have access to the note system yourself,                       
        use the following search criteria:                                                                               
    "GETWA_NOT_ASSIGNED" C                                                                        
        "SAPLKKBL" or "LKKBLF99"                                                                      
        "GEN_FIELD_OUT2"                                                                               
    If you cannot solve the problem yourself and you wish to send                                 
        an error message to SAP, include the following documents:                                                                               
    1. A printout of the problem description (short dump)                                         
           To obtain this, select in the current display "System->List->                              
           Save->Local File (unconverted)".                                                                               
    2. A suitable printout of the system log                                                      
           To obtain this, call the system log through transaction SM21.                              
           Limit the time interval to 10 minutes before and 5 minutes                                 
           after the short dump. In the display, then select the function                             
           "System->List->Save->Local File (unconverted)".                                                                               
    3. If the programs are your own programs or modified SAP programs,                            
           supply the source code.                                                                    
           To do this, select the Editor function "Further Utilities->                                
           Upload/Download->Download".                                                                               
    4. Details regarding the conditions under which the error occurred                            
           or which actions and input led to the error.                                               
    System environment                                                                               
    SAP Release.............. "640"                                                                               
    Application server....... "TERHSAPTST01"                                                      
        Network address.......... "10.129.48.15"                                                      
        Operating system......... "Windows NT"                                                        
        Release.................. "5.2"                                                               
        Hardware type............ "4x Intel 801586"                                                   
        Character length......... 16 Bits                                                             
        Pointer length........... 32 Bits                                                             
        Work process number...... 0                                                                   
        Short dump setting....... "full"                                                                               
    Database server.......... "TERHSAPTST01"                                                      
        Database type............ "MSSQL"                                                             
        Database name............ "INQ"                                                               
        Database owner........... "inq"                                                                               
    Character set............ "C"                                                                               
    SAP kernel............... "640"                                                               
        Created on............... "Mar 21 2007 23:46:50"                                              
        Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"                      
        Database version......... "SQL_Server_8.00 "                                                                               
    Patch level.............. "175"                                                               
        Patch text............... " "                                                                               
    Supported environment....                                                                     
        Database................. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"                          
        SAP database version..... "640"                                                               
        Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"                                                                               
    Memory usage.............                                                                     
        Roll..................... 8176                                                                
        EM....................... 12542784                                                            
        Heap..................... 0                                                                   
        Page..................... 286720                                                              
        MM Used.................. 8264648                                                             
        MM Free.................. 95024                                                               
        SAP Release.............. "640"                                                                               
    User and Transaction                                                                               
    Client.............. 100                                                                      
        User................ "CHINNIJ"                                                                
        Language key........ "E"                                                                      
        Transaction......... "ZSDOST "                                                                
        Program............. "SAPLKKBL"                                                               
        Screen.............. "SAPLKKBL 0500"                                                          
        Screen line......... 3                                                                        
    Information on where terminated                                                                   
        The termination occurred in the ABAP program "SAPLKKBL" in "GEN_FIELD_OUT2".                  
        The main program was "ZSDSO_ORDER_STATUS ".                                                                               
    The termination occurred in line 3380 of the source code of the (Include)                     
         program "LKKBLF99"                                                                               
    of the source code of program "LKKBLF99" (when calling the editor 33800).                     
    Source Code Extract                                                                               
    Line  SourceCde                                                                               
    3350       else.                                                                               
    3351         assign <fs74> to <field>.                                                           
    3352         gs_fc = gs_sfc74.                                                                   
    3353       endif.                                                                               
    3354     when 075.                                                                               
    3355       if gs_out_flags-slave ne 'X'.                                                         
    3356         assign <fm75> to <field>.                                                           
    3357         gs_fc = gs_mfc75.                                                                   
    3358       else.                                                                               
    3359         assign <fs75> to <field>.                                                           
    3360         gs_fc = gs_sfc75.                                                                   
    3361       endif.                                                                               
    3362     when 076.                                                                               
    3363       if gs_out_flags-slave ne 'X'.                                                         
    3364         assign <fm76> to <field>.                                                           
    3365         gs_fc = gs_mfc76.                                                                   
    3366       else.                                                                               
    3367         assign <fs76> to <field>.                                                           
    3368         gs_fc = gs_sfc76.                                                                   
    3369       endif.                                                                               
    3370     when 077.                                                                               
    3371       if gs_out_flags-slave ne 'X'.                                                         
    3372         assign <fm77> to <field>.                                                           
    3373         gs_fc = gs_mfc77.                                                                   
    3374       else.                                                                               
    3375         assign <fs77> to <field>.                                                           
    3376         gs_fc = gs_sfc77.                                                                   
    3377       endif.                                                                               
    3378     when 078.                                                                               
    3379       if gs_out_flags-slave ne 'X'.                                                         
    >>>>>         assign <fm78> to <field>.                                                           
    3381         gs_fc = gs_mfc78.                                                                   
    3382       else.                                                                               
    3383         assign <fs78> to <field>.                                                           
    3384         gs_fc = gs_sfc78.                                                                   
    3385       endif.                                                                               
    3386     when 079.                                                                               
    3387       if gs_out_flags-slave ne 'X'.                                                         
    3388         assign <fm79> to <field>.                                                           
    3389         gs_fc = gs_mfc79.                                                                   
    3390       else.                                                                               
    3391         assign <fs79> to <field>.                                                           
    3392         gs_fc = gs_sfc79.                                                                   
    3393       endif.                                                                               
    3394     when 080.                                                                               
    3395       if gs_out_flags-slave ne 'X'.                                                         
    3396         assign <fm80> to <field>.                                                           
    3397         gs_fc = gs_mfc80.                                                                   
    3398       else.                                                                               
    3399         assign <fs80> to <field>.                                                           
    Contents of system fields                                                                         
    Name     Val.                                                                               
    SY-SUBRC 4                                                                               
    SY-INDEX 78                                                                               
    SY-TABIX 0                                                                               
    SY-DBCNT 0                                                                               
    SY-FDPOS 0                                                                               
    SY-LSIND 0                                                                               
    SY-PAGNO 1                                                                               
    SY-LINNO 7                                                                               
    SY-COLNO 1002                                                                               
    SY-PFKEY STANDARD                                                                               
    SY-UCOMM %PC                                                                               
    SY-TITLE Order Data ware house                                                                    
    SY-MSGTY                                                                               
    SY-MSGID                                                                               
    SY-MSGNO 000                                                                               
    SY-MSGV1                                                                               
    SY-MSGV2                                                                               
    SY-MSGV3                                                                               
    SY-MSGV4                                                                               
    Active Calls/Events                                                                               
    No.   Ty.          Program                             Include                             Line   
          Name                                                                               
    16 FORM         SAPLKKBL                            LKKBLF99                             3380  
          GEN_FIELD_OUT2                                                                               
    15 FORM         SAPLKKBL                            LKKBLF99                              777  
          GEN_LINE_OUT                                                                               
    14 FORM         SAPLKKBL                            LKKBLF98                             1314  
          DATA_OUT_SIMPLE                                                                               
    13 FORM         SAPLKKBL                            LKKBLF01                              360  
          LIST_OUTPUT_NEW                                                                               
    12 FORM         SAPLKKBL                            LKKBLF01                             6109  
          FIRST_LIST_DISPLAY                                                                          
       11 MODULE (PBO) SAPLKKBL                            LKKBLO01                               11  
          LIST_DISPLAY                                                                               
    10 FUNCTION     SAPLKKBL                            LKKBLU01                              419  
          K_KKB_LIST_DISPLAY                                                                               
    9 METHOD       CL_GUI_ALV_GRID===============CP    CL_GUI_ALV_GRID===============CM00R   455  
          CL_GUI_ALV_GRID=>PRINT_BACKEND                                                              
        8 METHOD       CL_GUI_ALV_GRID===============CP    CL_GUI_ALV_GRID===============CM008     3  
          CL_GUI_ALV_GRID=>EXPORT_TO_LOCAL_FILE                                                       
        7 METHOD       CL_GUI_ALV_GRID===============CP    CL_GUI_ALV_GRID===============CM007   481  
          CL_GUI_ALV_GRID=>EXECUTE_FCODE                                                              
        6 METHOD       CL_GUI_ALV_GRID===============CP    CL_GUI_ALV_GRID===============CM01E    58  
          CL_GUI_ALV_GRID=>SET_FUNCTION_CODE                                                          
        5 FORM         SAPLSLVC_FULLSCREEN                 LSLVC_FULLSCREENF01                  1167  
          PAI                                                                               
    4 MODULE (PAI) SAPLSLVC_FULLSCREEN                 LSLVC_FULLSCREENI01                     4  
          PAI                                                                               
    3 FUNCTION     SAPLSLVC_FULLSCREEN                 LSLVC_FULLSCREENU01                   186  
          REUSE_ALV_GRID_DISPLAY                                                                      
        2 FORM         ZSDSO_ORDER_STATUS                  ZSDSO_ORDER_STATUS                   1305  
          DATA_DISPLAY                                                                               
    1 EVENT        ZSDSO_ORDER_STATUS                  ZSDSO_ORDER_STATUS                    632  
          START-OF-SELECTION                                                                          
    Chosen variables                                                                               
    Name                                                                               
    Val.                                                                               
    No.      16 Ty.          FORM                                                                     
    Name  GEN_FIELD_OUT2                                                                               
    <FS76>                                                                               
    <FIELD>                                                                               
    222                                                                               
    000                                                                               
    000                                                                               
    000                                                                               
    GS_FC                                                                               
    ##M#MVGR5                         I_OUT                                                       
        0040454532222222222222222222222222454552222222222222222222222222222222222222222222222222222222
        10D0D672500000000000000000000000009FF540000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GS_SFC76                                                                               
    0000222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GFLG_FIELD                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    GS_SFC24                                                                               
    0000222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GS_OUT-FIELD_COLCOUNT                                                                               
    78                                                                               
    4000                                                                               
    E000                                                                               
    GT_INFO_COUNTTAB_OUTTAB                                                                               
    Table[initial]                                                                               
    SY-REPID                                                                               
    SAPLKKBL                                                                               
    5454444422222222222222222222222222222222                                                      
        310CBB2C00000000000000000000000000000000                                                      
        0000000000000000000000000000000000000000                                                      
        0000000000000000000000000000000000000000                                                      
    GS_OUT_FLAGS-SLAVE                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    SPACE                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    <FM77>                                                                               
    222                                                                               
    000                                                                               
    000                                                                               
    000                                                                               
    GS_MFC77                                                                               
    ##M#MVGR5                         I_OUT                                                       
        0040454532222222222222222222222222454552222222222222222222222222222222222222222222222222222222
        10D0D672500000000000000000000000009FF540000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    <FS77>                                                                               
    GS_SFC77                                                                               
    0000222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    TC_FIELD_LIST-CX                                                                               
    <initial>                                                                               
    <initial>                                                                               
    <initial>                                                                               
    GT_INFO_FILTER_OUTTAB                                                                               
    Table[initial]                                                                               
    <FM78>                                                                               
    GS_MFC78                                                                               
    ##N#ZRELEASE                      I_OUT                                                       
        0040554444542222222222222222222222454552222222222222222222222222222222222222222222222222222222
        10E0A25C513500000000000000000000009FF540000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    <FS78>                                                                               
    GS_SFC78                                                                               
    0000222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    HEAD                                                                               
    22222222222222222222                                                                               
    00000000000000000000                                                                               
    00000000000000000000                                                                               
    00000000000000000000                                                                          
    G_INFO_POPUP                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    No.      15 Ty.          FORM                                                                     
    Name  GEN_LINE_OUT                                                                               
    GT_STACK2-S_SUBTOT_OPTIONS-OFFSET                                                                 
        0                                                                               
    0000                                                                               
    0000                                                                               
    %_DUMMY$$                                                                               
    2222                                                                               
    0000                                                                               
    0000                                                                               
    0000                                                                               
    SYST-REPID                                                                               
    SAPLKKBL                                                                               
    5454444422222222222222222222222222222222                                                      
        310CBB2C00000000000000000000000000000000                                                      
        0000000000000000000000000000000000000000                                                      
        0000000000000000000000000000000000000000                                                      
    GS_ACT_GROUP-SUBTOT                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    GS_OUT_FLAGS-SUM                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    EUINFO                                                                               
                            0000000000000000###
        2222222222222222222222222222222222222222222222200022222222222222222222222223333333333333333000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_SPACE                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    GS_OUT_FLAGS-HOTLINE                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    GS_OUT-COL                                                                               
    2                                                                               
    0000                                                                               
    2000                                                                               
    GS_OUT-INT                                                                               
    0                                                                               
    0000                                                                               
    0000                                                                               
    GS_OUT-ROWS                                                                               
    1                                                                               
    0000                                      

    Hi,
    We got a lot of short dumps with the same error when we upgraded from 46C to ECC6.
    They were all for reports that used ALV and in evry case, corrections were needed to the field catalog.
    I suggest that you double and triple check the table and field names in your field catalog. ALV is a lot more sensitive in ECC6 (or performs less checks) and it is possible that you're experiencing the same problem in ECC5.
    Hope that answers your question
    Alex Dixon

  • Error in Automatic Payment Program : ABAP/4 processor : GETWA_NOT_ASSIGNED

    Hi SAP gurus,
    I'm currently implementing automatic payment using DME to generate a text file, in a format that is specified by HSBC.
    I read some articles about this topic and I have done these steps:
    I created DME Format Tree (just a demo format tree).
    I created a new Payment Media Format
    Set up Payment Method and Assigned Payment Media Format.
    But finally it didn't work.
    After I run F110, the posting was okay but no Data Media File was created. The end of Job Log Entry look like below:
    "Step 002 started (program SAPFPAYM_SCHEDULE, variant &0000000001977, user ID DANGNH)
    ABAP/4 processor : GETWA_NOT_ASSIGNED
    Job cancelled"
    I don't understand why it won't work. Does anyone here have any suggestion for this problem.
    Thanks and regards.
    HaiDang.
    Edited by: Maxielight on Jun 28, 2010 2:14 PM

    Dear Madhu,
    I have followed your suggestion but It didn't work. I used transaction SE38 to run RGZZGLUX as yousuggested.
    I used ST12 to analyse runtime errors and the analysis information look like below:
    Short text
          Field symbol has not yet been assigned
    What happend?
          Error in the ABAP Application Program.
          The current ABAP program "SAPLDMEE2_ABA" had to be terminated because it has come across a statement
          that unfortunately cannot be executed.
    Error Analysis
          You attempted to access an unassigned field symbol (Data Segment 8)
    Any suggestion?
    Maxielight.

  • Package failed with run time error: " GETWA_NOT_ASSIGNED".

    Hi,
    One of our custom package is failing with run time error " GETWA_NOT_ASSIGNED". We are getting this error after refresh. Infact this package is working fine both in production and Dev, but in QA system it giving runtime error.
    Here with I am pasting run time error details. Please see...If any one have any idea or clue or if you have faced this kind of error.
    Thanks is advance.
    Error Details.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_UJK_CUSTOM_LOGIC===========CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    What can you do?
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    Error analysis
        You attempted to access an unassigned field symbol
        (data segment 32774).
        This error may occur if
        - You address a typed field symbol before it has been set with
          ASSIGN
        - You address a field symbol that pointed to the line of an
          internal table that was deleted
        - You address a field symbol that was previously reset using
          UNASSIGN or that pointed to a local field that no
          longer exists
        - You address a global function interface, although the
          respective function module is not active - that is, is
          not in the list of active calls. The list of active calls
          can be taken from this short dump.
    Regards, Trine

    Hi Trine,
    the error is about some field you are trying to map using field-simbols, that is diferent in the other system.
    Go to the code program in the st22, there you will see when the erros occurs e what field gives the error.
    Best Regards,
    António

  • Update was terminated - Getwa_not_assigned error

    Hello,
    When I try to create Invoice through VF03, Created invoice number is displayed but when I look for it again, It does not exist. I get Express information "Update was terminated".
    I looked in SM13 it shows description as Getwa_not_assigned. Its related to field symbol in a print program. Attempt to access an unassigned field symbol.
    However, It does not seem to be print program coding problem. but I could find out that NAST table is not being updated.
    Can you please tell me possible cause of update termination error?

    Hi ,,
    If that particular FieldSymbol was asigned..you would not have got that problem..
    Just confirm, the assignment for that FieldSymbols..you may get some clue there..
    Thanks
    Praveen

  • Getwa_not_assigned in program SAPLFKV0

    Hello.
    When executing a SAP program i get the following error. Can someone tell me which SAP notes to implement. The details of the dump are as follows.
    GETWA_NOT_ASSIGNED
    Short text
    Field symbol has not yet been assigned.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLFKV0" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    You attempted to access an unassigned field symbol
    (data segment 124).
    This error may occur if
    - You address a typed field symbol before it has been set with
    ASSIGN
    - You address a field symbol that pointed to the line of an
    internal table that was deleted
    - You address a field symbol that was previously reset using
    UNASSIGN or that pointed to a local field that no
    longer exists
    - You address a global function interface, although the
    respective function module is not active - that is, is
    not in the list of active calls. The list of active calls
    can be taken from this short dump.
    How to correct the error
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "GETWA_NOT_ASSIGNED" " "
    "SAPLFKV0" or "LSVIMFTX"
    "SET_TXT_UPDATE_FLAG"
    Information on where terminated
    Termination occurred in the ABAP program "SAPLFKV0" - in "SET_TXT_UPDATE_FLAG".
    The main program was "SAPLS_IMG_TOOL_5 ".
    In the source code you have the termination point in line 814
    of the (Include) program "LSVIMFTX".
    Source Code Extract
    Line SourceCde
    784 genkey = <textkey_x>
    785 genkey_ln = x_header-textkeylen
    786 TABLES
    787 * inttab = mod_elem_tab
    788 inttab = <texttab>
    789 EXCEPTIONS
    790 db_error = 12
    791 not_found = 04
    792 wrong_param = 08.
    793 IF sy-subrc > 4. RAISE get_table_error. ENDIF.
    794 * READ TABLE mod_elem_tab INDEX 1.
    795 READ TABLE <texttab> INTO <table1_text> INDEX 1.
    796 IF sy-subrc <> 0.
    797 MOVE <text_initial> TO <table1_text>.
    798 CLEAR sy-subrc.
    799 * ELSE.
    800 * <table1_text> = mod_elem_tab.
    801 ENDIF.
    802 ENDIF.
    803 ENDFORM. " TABLE_READ_SINGLE_ENTRY
    804
    805 &----
    806 *& Form SET_TXT_UPDATE_FLAG *
    807 ----
    808 * note, if texttab entry was modified on screen
    809 ----
    810 FORM set_txt_update_flag.
    811
    812 DATA: lb_als TYPE REF TO IF_EX_VIM_ALS_BADI.
    813
    >>>>> IF <textkey_x> EQ <initial_textkey_x> OR "textkey not filled yet OR
    815 status-action EQ kopieren OR "copy mode OR
    816 neuer EQ 'J' OR <xact> EQ leer OR "real new entry OR
    817 ( temporal_delimitation_happened EQ 'X' AND "temporal delimitation
    818 x_header-delmdtflag EQ 'B' ).
    819 PERFORM fill_texttab_key_uc USING <table1> <table1_text>."#EC ..
    820 ENDIF.
    821 IF status-action EQ hinzufuegen.
    822 <status>-upd_flag = 'X'. "always both tables must be added
    823 ELSE.
    824 TRANSLATE <status>-upd_flag USING ' TEX'.
    825 ENDIF.
    826
    827 CALL METHOD cl_exithandler=>get_instance
    828 EXPORTING
    829 null_instance_accepted = seex_false
    830 exit_name = 'VIM_ALS_BADI'
    831 CHANGING
    832 instance = lb_als
    833 EXCEPTIONS
    Thanks
    Audrey.

    Hello.
    When executing a SAP program i get the following error. Can someone tell me which SAP notes to implement. The details of the dump are as follows.
    GETWA_NOT_ASSIGNED
    Short text
    Field symbol has not yet been assigned.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLFKV0" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    You attempted to access an unassigned field symbol
    (data segment 124).
    This error may occur if
    - You address a typed field symbol before it has been set with
    ASSIGN
    - You address a field symbol that pointed to the line of an
    internal table that was deleted
    - You address a field symbol that was previously reset using
    UNASSIGN or that pointed to a local field that no
    longer exists
    - You address a global function interface, although the
    respective function module is not active - that is, is
    not in the list of active calls. The list of active calls
    can be taken from this short dump.
    How to correct the error
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "GETWA_NOT_ASSIGNED" " "
    "SAPLFKV0" or "LSVIMFTX"
    "SET_TXT_UPDATE_FLAG"
    Information on where terminated
    Termination occurred in the ABAP program "SAPLFKV0" - in "SET_TXT_UPDATE_FLAG".
    The main program was "SAPLS_IMG_TOOL_5 ".
    In the source code you have the termination point in line 814
    of the (Include) program "LSVIMFTX".
    Source Code Extract
    Line SourceCde
    784 genkey = <textkey_x>
    785 genkey_ln = x_header-textkeylen
    786 TABLES
    787 * inttab = mod_elem_tab
    788 inttab = <texttab>
    789 EXCEPTIONS
    790 db_error = 12
    791 not_found = 04
    792 wrong_param = 08.
    793 IF sy-subrc > 4. RAISE get_table_error. ENDIF.
    794 * READ TABLE mod_elem_tab INDEX 1.
    795 READ TABLE <texttab> INTO <table1_text> INDEX 1.
    796 IF sy-subrc <> 0.
    797 MOVE <text_initial> TO <table1_text>.
    798 CLEAR sy-subrc.
    799 * ELSE.
    800 * <table1_text> = mod_elem_tab.
    801 ENDIF.
    802 ENDIF.
    803 ENDFORM. " TABLE_READ_SINGLE_ENTRY
    804
    805 &----
    806 *& Form SET_TXT_UPDATE_FLAG *
    807 ----
    808 * note, if texttab entry was modified on screen
    809 ----
    810 FORM set_txt_update_flag.
    811
    812 DATA: lb_als TYPE REF TO IF_EX_VIM_ALS_BADI.
    813
    >>>>> IF <textkey_x> EQ <initial_textkey_x> OR "textkey not filled yet OR
    815 status-action EQ kopieren OR "copy mode OR
    816 neuer EQ 'J' OR <xact> EQ leer OR "real new entry OR
    817 ( temporal_delimitation_happened EQ 'X' AND "temporal delimitation
    818 x_header-delmdtflag EQ 'B' ).
    819 PERFORM fill_texttab_key_uc USING <table1> <table1_text>."#EC ..
    820 ENDIF.
    821 IF status-action EQ hinzufuegen.
    822 <status>-upd_flag = 'X'. "always both tables must be added
    823 ELSE.
    824 TRANSLATE <status>-upd_flag USING ' TEX'.
    825 ENDIF.
    826
    827 CALL METHOD cl_exithandler=>get_instance
    828 EXPORTING
    829 null_instance_accepted = seex_false
    830 exit_name = 'VIM_ALS_BADI'
    831 CHANGING
    832 instance = lb_als
    833 EXCEPTIONS
    Thanks
    Audrey.

  • GETWA_NOT_ASSIGNED error in CL_UC_MANUAL_DOCUMENT_GUI

    Hello,
    I am receiving the GETWA_NOT_ASSIGNED runtime error in program CL_UC_MANUAL_DOCUMENT_GUI when trying to view a specific BCS document from the "List of Journal Entries" output (UCWB or UCMON).  The error only occurs when trying to view two specific interunit elimination document types (other elimination documents have no problem).  Based on what I could find from existing notes, I thought that the problem might be related to incorrect entries being stored in the buffer.  However, the corrections for OSS notes 914672 and 982402 have been applied but I am still receiving the error. 
    System Info:
    SAP_BW 350: SAPKW35019
    SEM_BW 400: SAPKGS4015
    Program:  CL_UC_MANUAL_DOCUMENT_GUI
    Method:   SWITCH_PLACE_KFIG_UNIT
    Code:
       80 * i_docflg = 'X':
       81 * .key figure is posted by doc. type
       82 * .model supports key figure that is posted by doc. type (has
       83 *  been verified after reading doc. type properties)...
       84 *  -> both <ls_fprop_kfig> and <ls_fprop_unit> are assigned
       85 *     and <> init
       86 * ...prepare kfig entry...
    >>>>>   move-corresponding <ls_fprop_kfig> to ls_mdoc_fprop_kfig.
       88   ls_mdoc_fprop_kfig-component = gc_comp_docline.
       89 * begin of deletion                                          "wms012788d
       90 * if <ls_fprop_unit>-totals is initial.
       91 **  -> unit field is NOT contained in totals (s_char), i.e. an
       92 **     substitute field in s_addchar is required, depending
       93 **     on role of key figure...
       94 *   case i_role_kfig.
       95 *     when uc00_cs_role-tcval.
       96 *       ls_mdoc_fprop_kfig-unit_fld = GC_FNAME_TCKEY.
       97 *     when uc00_cs_role-lcval.
       98 *       ls_mdoc_fprop_kfig-unit_fld = GC_FNAME_lCKEY.
       99 *     when uc00_cs_role-gcval.
      100 *       ls_mdoc_fprop_kfig-unit_fld = GC_FNAME_gCKEY.
      101 *     when uc00_cs_role-quval.
      102 *       ls_mdoc_fprop_kfig-unit_fld = GC_FNAME_quKEY.
      103 *   endcase.
      104 * endif.
      105 * end of deletion                                            "wms012788d
      106 * begin of insertion                                         "wms012788d
    Many thanks in advance for any assistance with this issue.
    Samir

    Hello Eugene,
    Thank you for the response. 
    The error occurs in a production environment.  The customer has been using BCS since July 2007 but there have not been any elimination entires of the two document types until this past month.  That we haven't seen these elimination entries until now was due to the nature of the source data and not due to any newly added configuration. 
    Samir

Maybe you are looking for