cancel
Showing results for 
Search instead for 
Did you mean: 

REFI_WRONG_SECTION

Former Member
0 Kudos

Hi Experts,

Every day we getting REFI_WRONG_SECTION dump, Pls advice me.

ShrtText
    The range specified with SECTION exceeds the field boundaries.

What happened?
    Error in ABAP application program.

    The current ABAP program "CL_HTTP_EXT_ITS===============CP" 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
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_RANGE_OUT_OF_BOUNDS',
     was neither
    caught nor passed along using a RAISING clause, in the procedure
     "IF_HTTP_EXTENSION~HANDLE_REQUEST" "(METHOD)"
    .
    Since the caller of the procedure could not have expected this exception
     to occur, the running program was terminated.
    The reason for the exception is:
    The running program, "CL_HTTP_EXT_ITS===============CP", tried to access the
     field "LV_GETFIELD-NAME", which has a
    length of 0, using "SECTION OFFSET 0 LENGTH 1". The SECTION
    addition is only correct if the substring specified in the offset/length
     lies entirely within the field "LV_GETFIELD-NAME".

How to correct the error
    Make sure that the SECTION specified using offset/length lies within the
     field - for example, by checking that the offset and length are correct
     before executing the command.

    If the error occurred in one of your own programs or in an SAP program
    that you modified, try to correct it yourself.

    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:

    ------------------------------------------------------------------------
    "REFI_WRONG_SECTION" CX_SY_RANGE_OUT_OF_BOUNDSC
    "CL_HTTP_EXT_ITS===============CP" or "CL_HTTP_EXT_ITS===============CM001
    "IF_HTTP_EXTENSION~HANDLE_REQUEST"
    ------------------------------------------------------------------------
    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.
    The exception must either be prevented, caught within the procedure
     "IF_HTTP_EXTENSION~HANDLE_REQUEST"
    "(METHOD)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member184473
Active Contributor
0 Kudos

Hello Kanakala,

Which information you can see in the developer work trace (dev_w*)? You can find which workprocess was used in the short dump.

Also, did you check the following note?

862431 Runtime error REFI_WRONG_SECTION with generation

Regards,

Eduardo Rezende

Former Member
0 Kudos

Please advice me