GETWA_NOT_ASSIGNED_RANGE

Dear Experts,
Could u help me on this case:
during use ECCS ( T.code CX20) i faced this problem!
=====
Runtime Errors         GETWA_NOT_ASSIGNED_RANGE
Short text
    Field symbol is not assigned.
What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLFC05" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
Error analysis
    A field symbol that was not assigned was accessed
    (data segment no. 32774).
    The field symbol is no longer assigned because there was an attempt
    makde previously in a Unicode program to set the field symbol using
    ASSIGN with offset and/or length specification. Here, the memory
    addressed by the offset/length specification was not within the
    allowed area.
=====
Kindly reply and help me if u have experience on this issue!
thanks in advance!
Viettq

i solved myself!
thanks

Similar Messages

  • ABAP Dump GETWA_NOT_ASSIGNED_RANGE for program /SDF/CL_EM_DUMP_COLLECTOR=====CP

    Hello,
    I am getting ABAP runtime error GETWA_NOT_ASSIGNED_RANGE every 10 minutes in my ECC Production system. This dump is occurring for program /SDF/CL_EM_DUMP_COLLECTOR=====CP with short text as "Field symbol is not assigned".
    Error Analysis:
    "A field symbol that was not assigned was accessed
    (data segment no. "-1").
    The field symbol is no longer assigned because there was an attempt
    makde previously in a Unicode program to set the field symbol using
    ASSIGN with offset and/or length specification. Here, the memory
    addressed by the offset/length specification was not within the
    allowed area."
    Information on where terminated:
    "Termination occurred in the ABAP program "/SDF/CL_EM_DUMP_COLLECTOR=====CP" -
         in "GET_FIELDTABLE".
        The main program was "SAPMSSY1 ".
        In the source code you have the termination point in line 51
        of the (Include) program "/SDF/CL_EM_DUMP_COLLECTOR=====CM005"."
    Server-Side Connection Information:
    "Information on caller of Remote Function Call (RFC):
        System.............. "Solution Manager"
        Installation Number. " "
        Database Release.... 702
        Kernel Release...... 720
        Connection Type..... 3 (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
        Call Type........... "synchronous and non-transactional (emode 0, imode 0)"
        Inbound TID.........." "
        Inbound Queue Name..." "
        Outbound TID........." "
        Outbound Queue Name.." "
        Client.............. Prod Client
        User................ "SolMan user"
        Transaction......... " "
        Call Program........."SAPLE2EEM_DATA_COLLECTION"
        Function Module..... "/SDF/E2EEM_GET_DATA"
        Call Destination.... "SM_<ECC_PROD>_READ"
        Source Server....... "Solution Manager"
        Source IP Address... "Solution Manager"
        Additional information on RFC logon:
        Trusted Relationship " "
        Logon Return Code... 0
        Trusted Return Code. 0"
    I searched for SAP notes and other SCN discussion but could not find relevant information. Can someone please assist me? Thanks.
    Tanay

    Hi Srivastava,
    What process or transaction you are executing, when you got this dump, please share the detail.
    In SAP there so many areas where we can have this ABAP dump, please also share the snap shot in ST22 " How to Correct" part of dump which carries the exact program name e.g. in below snapshot program name, short text, etc  is given to search SAP note.
    Please also refer to the following sap notes:
    1840910 - Dump CHECK_SELOPT_ILLEGAL_SIGN
    1729771 - Collective corrections as of ST-PI 2008_1 SP06
    1011229 - ST-PI: Corrections for E2E Diagnostics
    Regards
    Javed

  • Short dump in Z pgm ("GETWA_NOT_ASSIGNED_RANGE" ) after upgrde

    Hi experts,
    I have a Z transaction for creating contract for imported goods. The first screen gets a list of input (vendor no, agmt type, etc)  and i have a button for selecting a file. On clicking this button, the file path input screen should get display. This file path selection worked correctly in our earlier system 4.6C.
    Now this system is upgrade to ECC 6.0. Now this file selection returns the following error when i click the 'Select file' button in the new system.
    ERROR ANALYSIS
    " A field symbol that was not assigned was accessed
    (data segment no. 16).
    The field symbol is no longer assigned because there was an attempt
    makde previously in a Unicode program to set the field symbol using
    ASSIGN with offset and/or length specification. Here, the memory
    addressed by the offset/length specification was not within the
    allowed area. "
    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_RANGE" " "
        "YMMIMP01" or "YMMIMP01"
        "%_SEL_SCREEN"
    Information on where terminated
       Termination occurred in the ABAP program "YMMIMP01" - in "%_SEL_SCREEN".
       The main program was "YMMIMP01 ".
    The source code of the file path selection is as below:
    AT SELECTION-SCREEN.
      IF SSCRFIELDS-UCOMM = 'ABCD'.
      IF GLOBAL_FILEMASK_MASK IS INITIAL.
        TMP_MASK = ',.,..'.
      ELSE.
        TMP_MASK = ','.
        WRITE GLOBAL_FILEMASK_TEXT TO TMP_MASK+1.
        WRITE ',' TO TMP_MASK+21.
        WRITE GLOBAL_FILEMASK_MASK TO TMP_MASK+22.
        WRITE '.' TO TMP_MASK+42.
        CONDENSE TMP_MASK NO-GAPS.
      ENDIF.
      IF NOT GLOBAL_FILEMASK_ALL IS INITIAL.
        TMP_MASK = GLOBAL_FILEMASK_ALL.
      ENDIF.
      TMP_PATH = GLOBAL_UPLOAD_PATH.
      FIELDLN = STRLEN( TMP_PATH ) - 1.
      ASSIGN TMP_PATH+FIELDLN(1) TO <TMP_SYM>.
      IF <TMP_SYM> = '/' OR <TMP_SYM> = '\'.
        CLEAR <TMP_SYM>.
      ENDIF.
      CALL FUNCTION 'WS_FILENAME_GET'
           EXPORTING
                DEF_FILENAME     = RLGRAP-FILENAME
                DEF_PATH         = TMP_PATH
              mask             = ',.prn,.txt.'
                MASK             = TMP_MASK
                MODE             = 'O'
            TITLE            = ' '
           IMPORTING
                FILENAME         = TMP_FILENAME
            RC               =
           EXCEPTIONS
                INV_WINSYS       = 01
                NO_BATCH         = 02
                SELECTION_CANCEL = 03
                SELECTION_ERROR  = 04.
    I get the error in the following line of the above code.
    IF <TMP_SYM> = '/' OR <TMP_SYM> = '\'.
    Could anyone explain me how to correct the error?.

    Hi experts,
    I have a Z transaction for creating contract for imported goods. The first screen gets a list of input (vendor no, agmt type, etc)  and i have a button for selecting a file. On clicking this button, the file path input screen should get display. This file path selection worked correctly in our earlier system 4.6C.
    Now this system is upgrade to ECC 6.0. Now this file selection returns the following error when i click the 'Select file' button in the new system.
    ERROR ANALYSIS
    " A field symbol that was not assigned was accessed (data segment no. 16).
    The field symbol is no longer assigned because there was an attempt makde previously in a Unicode program to set the field symbol using  ASSIGN with offset and/or length specification. Here, the memory addressed by the offset/length specification was not within the allowed area. "
    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_RANGE" " "
        "YMMIMP01" or "YMMIMP01"
        "%_SEL_SCREEN"
    Information on where terminated
       Termination occurred in the ABAP program "YMMIMP01" - in "%_SEL_SCREEN". The main program was "YMMIMP01 ".
    The source code of the file path selection is as below:
    AT SELECTION-SCREEN.
    IF SSCRFIELDS-UCOMM = 'ABCD'.
      IF GLOBAL_FILEMASK_MASK IS INITIAL.
      TMP_MASK = ',.,..'.
      ELSE.
       TMP_MASK = ','.
        WRITE GLOBAL_FILEMASK_TEXT TO TMP_MASK+1.
        WRITE ',' TO TMP_MASK+21.
        WRITE GLOBAL_FILEMASK_MASK TO TMP_MASK+22.
        WRITE '.' TO TMP_MASK+42.
        CONDENSE TMP_MASK NO-GAPS.
      ENDIF.
    IF NOT GLOBAL_FILEMASK_ALL IS INITIAL.
        TMP_MASK = GLOBAL_FILEMASK_ALL.
      ENDIF.
    TMP_PATH = GLOBAL_UPLOAD_PATH.
      FIELDLN = STRLEN( TMP_PATH ) - 1.
    ASSIGN TMP_PATH+FIELDLN(1) TO <TMP_SYM>.
      IF <TMP_SYM> = '/' OR <TMP_SYM> = '\'.
        CLEAR <TMP_SYM>.
      ENDIF.
    CALL FUNCTION 'WS_FILENAME_GET'
      EXPORTING
                DEF_FILENAME     = RLGRAP-FILENAME
                DEF_PATH         = TMP_PATH
                MASK             = TMP_MASK
                MODE             = 'O'
    IMPORTING
                FILENAME         = TMP_FILENAME.
    I get the error in the following line of the above code.
    IF <TMP_SYM> = '/' OR <TMP_SYM> = '\'.
    Could anyone explain me how to correct the error?.

  • GETWA_NOT_ASSIGNED_RANGE Short Dump in BW

    Hi,
    Recently, we have upgraded our BW system from SP10 to SP12 and done with Unicode Conversion on existing BW3.5
    After this, while executing FI GL queries, they are displaying message: "Field Symbol has not been assigned" with short dump "GETWA_NOT_ASSIGNED_RANGE". I
    I am attaching the few lines of short dump for yours reference.
    Runtime Errors         GETWA_NOT_ASSIGNED_RANGE
    ShrtText                                                                               
    Field symbol has not been assigned.   
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "SAPLRRI4" had to be terminated because one of the  statements could not be executed.                                                                                This is probably due to an error in the ABAP program. 
    Error analysis
    The system tried to access an anasigned field symbol (data segment number 32771). 
    The field symbol is no longer assigned, because a Unicode program  previously tried to set the field symbol using an ASSIGN statement with  an offset/length declaration. The memory addressed in this offset/length declaration, however, no longer lay within the valid range.
    Information on where terminated
    The termination occurred in the ABAP program "SAPLRRI4" in "CODE_TAB_SPLIT".  The main program was "SAPMSSY1 ". The termination occurred in line 71 of the source code of the (Include) program "LRRI4U01"  of the source code of program "LRRI4U01" (when calling the editor 710).
    Source Code Extract
    Line
    SourceCde
    41
    42
    DATA: L_S_CODEL TYPE RRI4_S_CODEL,
    43
    L_CODE  TYPE RSSG_S_CODELINE,
    44
    L_I       TYPE I.
    45
    FIELD-SYMBOLS: <L_SP>, <L_CODE>.
    46
    47
    L_I = STRLEN( C_S_CODEL-LINE ).
    48
    IF  L_I LE 72.
    49
    *................................... Zeile kurz also ok
    50
    L_CODE = C_S_CODEL-LINE.
    51
    APPEND L_CODE TO C_T_CODE.
    52
    53
    ELSEIF  C_S_CODEL-LINE CP '''''*' AND C_S_CODEL-LINE(1) NE ''''.
    54
    *................................... Zeile enthält '....', aber nicht
    55
                                       ganz vorne => ersten Teil abschneid
    56
    ASSIGN C_S_CODEL-LINE(SY-FDPOS) TO <L_CODE>.
    57
    L_CODE = <L_CODE>.
    58
    APPEND L_CODE TO C_T_CODE.
    59
    SHIFT C_S_CODEL-LINE BY SY-FDPOS PLACES.
    60
    if C_S_CODEL-LINE(1) eq '*'.
    61
    SHIFT C_S_CODEL-LINE right.
    62
    endif.
    63
    PERFORM CODE_TAB_SPLIT  CHANGING C_S_CODEL
    64
    C_T_CODE.
    65
    ELSE.
    66
    *.................................... ab der Stelle 72 rückwärts ein
    67
                                        Space suchen und dort teilen
    68
    DO.
    69
    L_I = 72 - SY-INDEX.
    70
    ASSIGN C_S_CODEL-LINE+L_I(1) TO <L_SP>.
    >>>>>
    IF <L_SP> EQ SPACE.
    72
    ASSIGN C_S_CODEL-LINE(L_I) TO <L_CODE>.
    73
    L_CODE = <L_CODE>.
    74
    APPEND L_CODE TO C_T_CODE.
    75
    SHIFT C_S_CODEL-LINE BY L_I PLACES.
    76
    if C_S_CODEL-LINE(1) eq '*'.
    77
    SHIFT C_S_CODEL-LINE right.
    78
    endif.
    79
    PERFORM CODE_TAB_SPLIT  CHANGING C_S_CODEL
    80
    C_T_CODE.
    81
    EXIT.
    82
    ENDIF.
    83
    ENDDO.
    84
    ENDIF.
    85
    ENDFORM.
    Please help me to resolve this issue at earliest as its impacting the Business.
    Best Regards,
    Venkata Challapalli.

    Check OSS notes:
    555143
    838560

  • GETWA_NOT_ASSIGNED_RANGE runtime error

    Hi,
    One of the user is getting the run time error for the report S_ALR_87100185. Rest everybody are able to execute without any problem for the same inputs. Run time says " GETWA_NOT_ASSIGNED_RANGE "
    Another user was having same problem for executing KE30, report painter report. Same user is able to execute the report on his collegue's machine without any problem with his own credentials.
    Problem still exists after reinstalling SAP GUI for both these users.
    Did anybody encountered similar problem previously ??  What was the solution ??
    Thanks in advance
    uma

    resolved

  • Error while scheduling data collector: Error adding routine 'SAPTOOLS.DBH_FWK_CLEANUP' to task scheduler

    Error Detail
    Exception CX_DBA_ADBC in program RAGS_SISE_ACTIVITY_JOB line 0
    Kernel Error ID:
    WP ID: 23
    WP PID: 28977
    SYSID: CR5
    SY-SUBRC: 0
    SQL statement:
    Database: CR5
    caused by
    Exception CX_SQL_EXCEPTION in class CL_SQL_STATEMENT
    Kernel Error ID:
    DB Error: Yes
    SQL Code: 444-
    SQL Message: SQL0444N Routine "*TASK_ADD" (specific name "SQL140704080729140") is implemented with code in library or path "...ib/function/SYSPROC.ADMIN_TASK_ADD", function "*" which cannot be accessed. Reason code: "4". SQLSTATE=42724 row=1
    DB Object Exists: No
    Duplicated Key: No
    Internal Error: 1
    Invalid Cursor: No
    Unknown Connection: No
    Connection Closed: No
    System Detail:
    Solman 7.1
    ST    710    0010    SAPKITL710    SAP Solution Manager Tool
    SAP_BASIS    702    0013    SAPKB70213    SAP Basis Component
    Managed system:
    SAP CRM ABAP 7.0
    SAP_BASIS    701    0005    SAPKB70105    SAP Basis Component
    SAP_ABA    701    0005    SAPKA70105    Cross-Application Component
    PI_BASIS    701    0005    SAPK-70105INPIBASIS    Basis Plug-In
    ST-PI    2008_1_700    0008    SAPKITLRD8    SAP Solution Tools Plug-In
    CRMLOY    700    0005    SAPK-70005INCRMLOY    CRM Loyalty Management 700
    SAP_BS_FND    701    0005    SAPK-70105INSAPBSFND    SAP Business Suite Foundation
    SAP_BW    701    0005    SAPKW70105    SAP Business Warehouse
    LCAPPS    2005_700    0007    SAPKIBHD07    LC Applications (LCAPPS) 2005_700
    Database DB2
    db2level
    DB21085I  Instance "db2cr5" uses "64" bits and DB2 code release "SQL09016" with
    level identifier "01070107".
    Informational tokens are "DB2 v9.1.0.6", "s081007", "U817474", and Fix Pack
    "6".
    Activity detail:
    We are performing managed system configuration for CRM into Solman by using solman_setup transaction. While performing the Database Extractor Setup in step 8 we have observed above error.
    Action take at our end:
    1. Clean the LMDB and restart the configuration. - no luck
    2. Upgrade the hostagent at CRM - No luck
    3. Update the SLD for CRM entry - no luck
    4. implemented SAP notes:
    875986    Note Assistant: Important notes for SAP_BASIS up to 702
    1246964    Note Assistant: Master language of notes incorrect
    1262653    SPAU: New object is deleted after note is reset
    1309424    DB6: DBA Cockpit Correction Collection SAP Basis 7.01 / 7.11
    1335017    DB6:"Remove Redundant Restrictions" can return wrong results
    1349277    Note Assistant: Method cannot be implemented
    1365677    Note Assistant: Runtime error MOVE_CAST_ERROR during implmtn
    1372652    DB6: Short dump when viewing diaglog due to NULL bytes
    1373957    DB6: CX_SY_CONVERSION_OVERFLOW in new EXPLAIN
    1376543    DB6: OPTIONS parameters for backup jobs in DB13
    1378499    DB6: CLI error CLI0112E with "REORGCK_ALL" job
    1379260    DB6: Add BW query name as comment to SQL statements
    1379346    DB6: Scheduling of data collectors fails
    1381179    DB6: Incorrect values for 'number of objects in tablespace'
    1382634    DB6: Unable to create view 'SAPTOOLS.DBH_TABCLASS'
    1382996    DB6: Update of DPW Back-End in Monitored DBs does not work
    1384238    DB6: Defect scheduler on DB2 9.1 FP7/FP8 for LUW on Linux
    1387022    DBA Cockpit: Month displayed incorrectly in DB13C
    1387297    DB6: SQL-Fehler 901 during RUNSTATS and REORGCHK
    1397709    Ignore Dynpro element fields AGLT and ADEZ in SNOTE/CWB
    1398258    DB6: Job REORGCK_ALL places load on package cache
    1400843    DB6: Incorrect display of key fields in EXPLAIN
    1412719    SNOTE: error when implementing enhancement implementations
    1413008    DB6: SQL0206N in function module DB6_PM_LOCKSNAP
    1414624    DB6: Performance views if database monitors are deactivated
    1414626    DB6: Incorrect display of file system sizes of containers
    1415680    Note Assistant: Incorrect status in subsequent systems
    1421157    DB6: SQL error 204 when accessing table DBSTATC
    1425487    SE24: Error regarding READ-ONLY for complex attributes
    1426092    DB6: Incorrect DROPPED TABLE clause for tablespaces
    1426480    DB2: Incorrect display of registry values for DPF systems
    1427030    DB6: Container specifications for tablespaces not changeable
    1429082    DB6: No REORG after deactivating compression
    1429687    DB6: SQL cache performance
    1438168    DB6: REORGCHK recommendations for indexes are missing
    1444373    DB6: Loading the package cache with monitor functions
    1449482    DB6: Error message 'Command LIST_DB2DUMP failed'
    1451958    DBA Cockpit: Incorrect start time for jobs
    1452197    DB6: SQL error 100 in job REORGCK_ALL
    1452502    DBA Cockpit: Jobs are missing in central planning calendar
    1455897    DB6: Display of data classes is not updated
    1456379    DB6: No display of indexes in data classes
    1460895    DB6: SQL0104N during creation of WLM threshold
    1462415    DB6: SQL -444 error messages in system log
    1462855    DB6: Incorrect database name in HA environment
    1464800    DB6: SQL Commands executes automatically on system change
    1464858    DB6: COMPUTE_BCD_OVERFLOW during EXPLAIN Test Execute
    1469515    DB6: Runtime error GETWA_NOT_ASSIGNED_RANGE in SAPLSDB6MON
    1485313    DBA Cockpit: Incomplete system entries after SLD import
    1486972    DB6: Parameters for DB/DBM configuration cannot be changed
    1489968    DBA: DBA Cockpit WebDynpro does not care about HTTPURLLOC
    1496515    DB6: SQL error 1428N when starting the DBA Cockpit
    1501130    DB6: SQL error 802 in DB6_DIAG_COUNT_TABLE_ENTRIES
    1508074    RZ20: 'Connection' attribute does not report alerts
    1509121    DBA Cockpit: Endless loop occurs when starting DBA Cockpit
    1511803    DB6: DB_TABLE_DATA_READ does not return data
    1521525    DB6: Table display is not sorted
    1522617    DB6: Availability of BW-specific functions in DBA Cockpit
    1532114    DB6: Too many locks when collecting table history
    1536787    DBA Cockpit: WebDynpro Explain - LOADDATA requires a model
    1542311    DB6: Runtime error BCD_OVERFLOW in auto maintenance display
    1546866    DB6: Runstats_DBSTATC interprets runtime param. incorrectly
    1551729    DB6: Incorrect number of key fields in EXPLAIN
    1552812    DB6: Use of db2sap functions
    1559699    DB6: Missing data in SQL cache display
    1559967    DB6: SQL error 206 when collecting the table history
    1563327    DB6: SQL error SQL0551N when accessing SYSSTAT.TABLES
    1568800    DB6: Error when deleting alert messages
    1569592    DB6: SQL error SQL0433N in EXPLAIN
    1569669    DB6: Incomplete history for performance data
    1571365    DB6: SQL error SQL0443N in alert monitoring of DPF system
    1576094    DB6: Database error SQL1751N in partitioning wizard
    1597281    DB6: Incorrect compression displays for tables
    1599764    DB6: SQL error 1428 when calling transaction SM50
    1602403    DB6: No VOLATILE attribute after RUNSTATS or REORG job
    1613270    DB6: Runtime error DYNPRO_FIELD_CONVERSION in DBA cockpit
    1615698    DBA Cockpit: Incorrect date selection in DB13C
    1619084    DBA Cockpit: Runtime err MESSAGE_TYPE_X when alert displayed
    1619636    DBA Cockpit: Daily scheduling is not deleted
    1624436    DBA Cockpit: Errors when accessing SHM area CL_DBA_SHM_AREA
    1639631    DBA Cockpit: Failed schedulings in DB13
    1720495    Invalid deimplementation of obsolete notes by Snote tool
    Kindly suggest the correct solution to fix the issue.

    Dear Deepak
    Thanks for quick response.
    Note 1462415 - DB6: SQL -444 error messages in system log  ( SAP_BW 701 SP7 suggested)
    This is already implemented and updated in my 1st message.
    Note 978319 - DB6: Incorrectly cataloged table functions
    This note can not be implemented due to version issue.
    Kindly suggest some more hints on top of what I already did.
    Regards
    Bipin

  • Problem in PPOSE

    When I am executing PPOSE transaction I am getting 'GETWA_NOT_ASSIGNED_RANGE' dump.Detailed dump :
    Runtime Errors         <b>GETWA_NOT_ASSIGNED_RANGE</b>
    Date and Time          03/27/2006 17:40:38
    ShrtText
    Field symbol has not been assigned.
    What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLRHOMDETAIL_APPL" 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?                                                     
    Error analysis
    The system tried to access an anasigned field symbol (data segment
    number 32772).
    The field symbol is no longer assigned, because a Unicode program
    previously tried to set the field symbol using an ASSIGN statement with
    an offset/length declaration. The memory addressed in this offset/length
    declaration, however, no longer lay within the valid range.
    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_RANGE" C
    "SAPLRHOMDETAIL_APPL" or "LRHOMDETAIL_APPLF01"
    "INIT_PERIOD_SWITCHER"
    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....... "chp454"
    Network address.......... "10.129.18.163"
    Operating system......... "AIX"
    Release.................. "5.1"
    Hardware type............ "003F0C7D4C00"
    Character length......... 16 Bits
    Pointer length........... 64 Bits
    Work process number...... 0
    Short dump setting....... "full"
    Database server.......... "chp454"
    Database type............ "ORACLE"
    Database name............ "P09"
    Database owner........... "SAPDAT"
    Character set............ "C"
    SAP kernel............... "640"
    Created on............... "Nov 6 2005 20:48:23"
    Created in............... "AIX 1 5 00538A4A4C00"
    Database version......... "OCI_920 "
    Patch level.............. "99"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.1.7.., ORACLE 9.2.0.., ORACLE
    10.1.0.."
    SAP database version..... "640"
    Operating system......... "AIX 1 5, AIX 2 5, AIX 3 5"
    Memory usage.............
    Roll..................... 16192
    EM....................... 16759424
    Heap..................... 0
    Page..................... 253952
    MM Used.................. 8570200
    MM Free.................. 3996376
    SAP Release.............. "640"
    User and Transaction
    Client.............. 600
    User................ "ABLANCHE"
    Language key........ "E"
    Transaction......... "PPOSE "
    Program............. "SAPLRHOMDETAIL_APPL"
    Screen.............. "SAPLRHOMDETAIL_APPL 0400"
    Screen line......... 3
    Information on where terminated
    The termination occurred in the ABAP program "SAPLRHOMDETAIL_APPL" in
    "INIT_PERIOD_SWITCHER".
    The main program was "OM_START_NF ".
    The termination occurred in line 181 of the source code of the (Include)
    program "LRHOMDETAIL_APPLF01"
    of the source code of program "LRHOMDETAIL_APPLF01" (when calling the editor
    1810).
    Source Code Extract
    Line
    SourceCde
    151
    read table offset_info with key
    152
    fieldname = used_infties-sname.
    153
    154
    if offset_info-inttype = 'P'.
    155
    assign act_pnnnn+offset_info-offset(offset_info-intlen)
    156
    to <current_infty_field_comp>
    157
    type offset_info-inttype
    158
    decimals offset_info-decimals.
    159
    else.
    160
    assign act_pnnnn+offset_info-offset(offset_info-intlen)
    161
    to <current_infty_field_comp>
    162
    type offset_info-inttype.
    163
    endif.
    164
    165
    index_count = 2.
    166
    compare values of this special field
    167
    while index_count <= period_num.
    168
    read table act_pnnnn index index_count.
    169
    170
    if offset_info-inttype = 'P'.
    171
    assign act_pnnnn+offset_info-offset(offset_info-intlen)
    172
    to <current_infty_field>
    173
    type offset_info-inttype
    174
    decimals offset_info-decimals.
    175
    else.
    176
    assign act_pnnnn+offset_info-offset(offset_info-intlen)
    177
    to <current_infty_field>
    178
    type offset_info-inttype.
    179
    endif.
    180
    >>>>>
    if <current_infty_field> <> <current_infty_field_comp>.
    182
    given_periods-begda = act_pnnnn-begda.
    183
    given_periods-endda = act_pnnnn-endda.
    184
    append given_periods.
    185
    endif.
    186
    187
    <current_infty_field_comp> = <current_infty_field>.
    188
    index_count = index_count + 1.
    189
    190
    endwhile.
    191
    192
    endloop.
    193
    194
    endif.
    195
    endif.
    196
    endif.
    197
    198
    endloop.
    199
    200
    sort given_periods by begda endda.
    Anybody with any thoughts???Thanks.
    Sinchan

    Hi,
    Are you on a Unicode enabled system? If yes, pl verify if the SAP Note No. 900669 is relevant in your scenario.
    Regards,
    Suresh Datti

  • Regarding error "Field symbol is not assigned." during print preview

    Hi experts,
        I am getting dump while trying print preview for particular POs in ME23n transaction(ECC 6.0). Please refer the below dump error:
    Runtime Errors         GETWA_NOT_ASSIGNED_RANGE
    Date and Time          29.09.2009 19:30:39
    Short dump has not been completely stored (too big)
    Short text
         Field symbol is not assigned.
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLSTXC" 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
         A field symbol that was not assigned was accessed
         (data segment no. 32769).
        The field symbol is no longer assigned because there was an attempt
        makde previously in a Unicode program to set the field symbol using
        ASSIGN with offset and/or length specification. Here, the memory
        addressed by the offset/length specification was not within the
        allowed area.
    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_RANGE" " "
        "SAPLSTXC" or "LSTXCFFT"
        "FT_COMPOSE"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
       2. Corresponding system log
          Display the system log by calling transaction SM21.
          Restrict the time interval to 10 minutes before and five minutes
       after the short dump. Then choose "System->List->Save->Local File
       (Unconverted)".
       3. If the problem occurs in a problem of your own or a modified SAP
       program: The source code of the program
          In the editor, choose "Utilities->More
       Utilities->Upload/Download->Download".
       4. Details about the conditions under which the error occurred or which
       actions and input led to the error.
    I am getting this dump only for few POs.. Rest of the POs are able to print. I am not able to find notes for this issue. Is there any SAP notes available for that  or Is there any configuration issue related to this?
    Please provide solution for thsi as soon as possible.
    Thanks and Regards 
    Subbu

    A field symbol is not assigned, but thats what the dump is telling you. Mostly this happens, when fields or function modules are stored by name, like the fieldnames in the fieldcatalog in an ALV report. It a field referenced in such a way does not exist you will get this error. Always store fieldnames and function names in capital letters and check mistyping of 1L 8B and so on.

  • Problem in saving Cash sales Invoice

    Hello,
    I am working on Version 4.7. While saving the billing document for a cash sale [VF01], I am getting the following ABAP dump error:
    CASH SALES ERROR
    "GETWA_NOT_ASSIGNED_RANGE" C
    "SAPLV60A" or "LV60AV02"
    "RV_INVOICE_DOCUMENT_ADD"
    <u>Info on where termination occured:</u>
    The termination occured in the ABAP program "SAPLV60A" in "RV_INVOICE_DOCUMENT_ADD"
    The main program was "SAPMV60A"
    The termination occured in line 398 of the source code of the (Include) program "LV60AV02" (when calling the editor 3980)
    This is followed by the program.
    Please help in diagonising the problem.
    Karthik.

    Hi,
    Refer this note.
    582570     Dump when saving cash sales billing documents
    553256     Dump during FI transfer of billing document under U
    114756     Customer hierarchy determination for pricing
    This may be a configuration issue rather than a bug so it is something
    that your CO consultant should investigate further.
    Please check the following:
    => Please check and review the pricing procedure/userexits involved and
       formulas (if any used in the pricing).
    => Are you doing a re-pricing during billing? If yes please for test
       purposes please set it off in the copy rules and re-run the same job
       again without repricing. This would allow you to locate the reasons
       for the dump.
    => In TC KEDR check the definition of condition settings in the
       derivation steps, if the length is set to 14 for e.g then the
       attribute should be 11(3). As I cannot logon I dont know what fields
       are incorrect so please check this.
    => Please also review the attached notes.
    The following helped resolve a previous customer case with this issue:
       Please check in case you have defined a condition in the derivation
       step 'Clear product hierarchy 03 if level is blank' of your operating
       concern which is not feasible. Therefore the system issues
       a short dump. You there have defined a condition that the step
       should be executed in case field CO-PA-PAPH3+10(5)is initial.
       This cannot be handled by the system as field PAPH3 only has length
       11 and not 15 which would be necessary to handle the condition.
       If this is the case please adapt the condition accordingly and also
       check if the other conditions in your derivation strategy are okay.
       This should solve the problem.
    Regards,
    Murali

  • Payment method supplement

    I have already configured payment method suppliment and also specified to use payment method supplements in the activity Set Up All Company Codes for Payment Transactions.
    I need to sort the printing of checks based on to be mail, courier and register mail through payment method supplement.
    I am facing two issues
    1. Print program is not able to recognise the printing sequence
    2. BSEG-UZAWE field is suppressed for input
    Please help.

    hi,
    I have to sort the printing of cheques based on Payment method supplement.
    I think i have done the required configuration like defined payment method supplement, activating it in FBZP and also defined it in Payment sorting and assigned it in "payment method for each cc in FBZP'.
    Still not working....and getting an error ABAP/4 processor: GETWA_NOT_ASSIGNED_RANGE
    please advice.
    Thanks
    Riya

  • SAPF150D-Dunning Notice Print - With Update of Line Items and Master Record

    When I am running this program SAPF150D(Dunning Notice Print - With Update of Line Items and Master Records) with a variant containing run date, runc id, update mode, pimmed & pcount; the job is failing to execute. It is giving message like,
    "The field symbol is no longer assigned because there was an attempt makde previously in a Unicode program to set the field symbol using ASSIGN with offset and/or length specification. Here, the memory addressed by the offset/length specification was not within the allowed area."
    "GETWA_NOT_ASSIGNED_RANGE" "SAPF150D" or "F150DFS0" "SORTFELDER_ERMITTELN"

    Hi,
    Search for routine FORM SORTFELDER_ERMITTELN
    in SAPF150D.
    Put a breakpoint in statement
    ASSIGN (T047F-FELDN) TO <H1>.
    in above routine and debug to the point where error is occuring.
    Most likely there is a mismatch in the length assigned to some field FELDN in table T047F.
    In that case, simply change the T047F-LENGT field accordingly in change mode.
    Cheers,
    Vikram
    Edited by: Vikram Jalali on May 27, 2008 5:56 PM

  • BEX analyzer ends with RFC_ERROR_SYSTEM_FAILURE

    Hello everybody,
    I got a problem with BE Analyzer. I have developed a report:
    ROWS – Reusable structure with about 20 selections
    COLUMNS - Reusable structure with about 11 selections.
    The problem is: when I try to run my report I got following error:
    <i><internal error> Receiving from the BW server failed
    BW server raised exception: SYSTEM_FAILURE
    Do you want to see more information: Y</i>/N
    After choosing YES, I see following message:
    <i>Field symbol has not been assigned
    Error Group
    RFC_ERROR_SYSTEM_FAILURE</i>
    I was able to debug this problem and the runtime error is:
    GETWA_NOT_ASSIGNED_RANGE in the program SAPLRRI4.
    The funny thing about it is that, when I define only up to 8 selections in the reusable structure in columns – my report ____works_____. I have tried all the possible constellations of selections in the structure and it doesn’t depend on the selection in the structure – it has to be only up to 8 selections.
    Has anyone faced such a problem?
    Any help appreciated.
    Regards
    Pawel

    Hello Anurag,
    sorry for the long time not responding.
    I've checked the note 555143, but I suppose, that is not the case I'm dealing with. We are running BW 3.5 with support package
    SAPKW35012.
    Thanks for your help.
    I'll try to find other note.
    Regards
    Pawel

  • Initial download from crm 5 to ecc 6

    Initial Download of ECC 6 customer_main to CRM works well but mapping of bupa_main from CRM 5 to ECC 6 didn't work.
    In R3AS I got an short dump:
    GETWA_NOT_ASSIGNED_RANGE
    So I tried CRMM_BUPA_MAP to send single customers and I got that error.
    Partially send, receivers have errors:
    I have checked all the fields in the ecc6 settings and crm5 also.
    it is very urgent bec. iam at client side.

    Hi Devi,
    Ya now its clear. So basically you are dealing with the data exchange between the R/3 customer to CRM business partner.
    As you mentioned that the CUSTOMRE_MAIN load is successful
    and that means you have already done the account group to calssification mapping in R/3 transaction PIDE from R/3 to CRM. Pls check the same transaction for the data flow from CRM to R/3. Also check the number range assignment. For more detail check the best practice guide C03.
    <b>Reward points if it helps!!</b>
    Best regards,
    Vikash.

  • Account Posting Error

    Hi,
    On posting my billing document to accounting I am getting an ABAP runtime error "GETWA_NOT_ASSIGNED_RANGE". As I understood it, it was to do with number range assigment for accounting document. But I have already assigned number ranges to my a/c docs(1, 14 and 49 -as I was asked by system). Moreover, with the same configuration I used to post the billing to accounting successfully. What could have gone wrong? Any suggestions please? Thanks in advance.

    Dear Narendra
    This is bcoz Account Assignment Group was not flowing in billing and hence the error.  First check in customer master whether you have maintained the Account Assignment Group and if so, check in billing document at header level.
    thanks
    G. Lakshmipathi

  • Error at fiels symbol in version ECC 6.0

    Hi,
    Iam working on ecc6.0 version. iam getting Runtime error with ‘GETWA_NOT_ASSIGNED_RANGE’.
    error occured at the follwing form..
    global declarations:
    field-symbols  <fsym>.
    data: month(61)  type c value
    ' JAN  FEB  MAR  APR  MAY  JUN  JUL  AUG  SEP  OCT  NOV  DEC  ',
          datetxt1(11)   type   c,
          datetxt2(11)   type   c,
          mi-index       type   i.
    FORM convert_to_date_ccyy USING udatein udateout.
      DATA:  datein        TYPE d,
             dateout(11)   TYPE c.
      datein    = udatein.
      mi-index        = ( datein+4(2) - 1 ) * 5.
      ASSIGN month+mi-index(5) TO <fsym>.
      dateout        = datein+6(2).
      dateout+2(4)   = <fsym>.
      dateout7(4)   = datein0(4).
      dateout+2(1)   = '-'.
      dateout+6(1)   = '-'.
      udateout = dateout.
    ENDFORM.
    Program giving shortdump. Excel tab is not empyt since some perform statements are executed before going into shortdump.
    Please look into this and give me some suggestions.
    Thanks in advance,
    kris

    Hi Srikant
      You can use FM: CONVERSION_EXIT_SDATE_OUTPUT to acheive the date formatting.
      use sample code:
    data: l_date like sy-datum,
          l_output(20) type c.
    l_date = sy-datum.
    CALL FUNCTION 'CONVERSION_EXIT_SDATE_OUTPUT'
      EXPORTING
        INPUT         = l_date
    IMPORTING
       OUTPUT        = l_output.
    write:/ l_output.
    Kind Regards
    Eswar

Maybe you are looking for