TABLE_INVALID_INDEX

Hi Experts,
I am getting the error TABLE_INVALID_INDEX.Can any one help for this below error.
Short text                                                                               
Error in ABAP/4 statement when processing an internal table.                                 
|What happened?                                                                               
Error in the ABAP Application Program                                                        
The current ABAP program "SAPLHRHAP_UI_WD_SUPPORT" had to be terminated because   
|Source Code Extract                                                                               
1010
| 1011|        IF sy-subrc <> 0.                                                                  
| 1012|          lv_target_found = c_false.                                                       
| 1013|          lv_index = lv_index - 1.                                                         
| 1014|          WHILE lv_index > 0 AND lv_target_found = c_false.                                
| 1015|*           Read the previous element                                                      
| 1016|            READ TABLE ps_document-t_body_elements                                         
| 1017|              INTO lw_body_current_element                                                 
| 1018|              INDEX lv_index.                                                              
1019
| 1020|*           Check if the element is to be displayed on a separate tab                      
| 1021|            READ TABLE pt_tabstrip                                                         
| 1022|              INTO lw_wd_tab_temp                                                          
| 1023|              WITH KEY                                                                     
| 1024|                row_iid = lw_body_current_element-row_iid.                                 
| 1025|            lv_tab_index = sy-tabix.                                            
| 1027|            IF sy-subrc = 0.                                                               
| 1028|              lv_target_found = c_true.                                                   
| 1029|            ELSE.                                                                          
| 1030|              lv_index = lv_index - 1.                                                     
| 1031|            ENDIF.                                                                         
| 1032|          ENDWHILE.                                                                        
| 1033|        ENDIF.                                                                             
1034
| 1035|*       Add the element to the found tab                                                   
| 1036|        lw_wd_tab_content_temp = lw_body_element-row_iid.                                  
| 1037|        APPEND lw_wd_tab_content_temp TO lw_wd_tab_temp-t_tab_content.                     
| 1038|        MODIFY pt_tabstrip FROM lw_wd_tab_temp INDEX lv_tab_index.                         
1039
|>>>>>|        IF lw_wd_tab-tab_id = lw_wd_tab_temp-tab_id.                                       
| 1041|*         Take over changes to currently processed tab config                              
| 1042|          APPEND lw_wd_tab_content_temp TO lw_wd_tab-t_tab_content.                        
| 1043|        ENDIF.                                                                             
| 1044|      ENDIF.                                                                               
| 1045|    ENDIF.                                                                               
| 1046|  ENDLOOP.                                                                               
| 1047|ENDFORM.                    " fill_document_tab

Hi Durga,
Are you enhancing the standard program?
Go through below links, it wil get you some idea.
error in  TABLE_INVALID_INDEX in prog HINCF161 for form16
Runtime Errors- TABLE_INVALID_INDEX
I think you should send this to OSS.
Regards
Srinivas

Similar Messages

  • Report J_1IEWT_CERT getting cancelled, generating ABAP dump!

    A long running report J_1IEWT_CERT in background mode is getting cancelled after running for a while and generating the following dump :
    Error analysis
        When changing or deleting one or more lines of the internal table
        "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]" or when inserting in the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]", 0 was used as
        the line index. An index less than or equal to zero is not
        allowed.
        The error can occur when using the following options:
        1. "INDEX idx" for specifying the line number in the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]"
           where you want to change, insert or delete.
        2. "FROM idx" for specifying the start index when deleting a line
           area from or inserting a line area into the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]".
        3. "TO idx" for specifying the end index when deleting a line
           area from or inserting a line area into the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]".
        At the time of the termination, the table contained 17008 lines.
    How to correct the error
        If the error occurred in your own ABAP program or in an SAP
        program you modified, try to remove 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:
        "TABLE_INVALID_INDEX" " "
        "J_1IEWT_CERT" or "J_1IEWT_CERT_F01"
        "FILTER_DATA"
        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".
    Tried searching for some SAP Notes to fix the issue, no success as of now, Please help me out...

    Have you checked these notes ?
    363107 Short dump occurs during TDS certificate printing.
      803806  Error while genrating TDS certificate 03.01.2005
      1066049  J1INCERT - Error while generating TDS certificate
    Regards,
    Subhash

  • Runtime error when updating service item with BAPI PO CHANGE

    Hi,
    I get rutime error TABLE_INVALID_INDEX after calls:
    BAPI_PO_CHANGE-> PROCESS_NON_INTEGRATED_COMP-> CHANGE_PO_SRV_ITEM -> MS_CHANGE_SERVICE_PACKAGE_PO -> ROW_IN_PO -> CHECK_ACC_PO -> MS_CHANGE_ACCASS_PO -> ESKL_UPDATE.
    the reason is, that ESKL internal table is empty, so the function retrieves last entry index, there is no entry , so  sy-tabix = 0 , and function updates with index 0, which causes the runtime error. I dont know why it is empty, maybe I should copy this table gt_srvaccess from BAPI_PO_GETDETAIL  to BAPI_PO_CHANGE.
    This error appears only in mode KNTIMOD=2 (Multikontierung), not in KNTIMOD=1(Einfachkontierung), so just when ESKL contains more lines for one PACKAGE_NUMBER.
    I am just updating the value ordered to be equal value delivered to close the PO, or delete the item in case ordered >0 and deliveded = 0.
    Here is my part of code:
    *close existing PO's by changing the value ordered to the value receipted
                move 'X' to w_change_flag.
                w_hdrx-po_number = 'X'.
                if w_total-val_gr_for is not initial.
                  w_itemx-delete_ind = 'X'.
                  append w_itemx to gt_itemx.
                  clear: w_itemx.
                  read table gt_services into w_service2 with key pckg_no = w_item-pckg_no.
                  if sy-subrc eq 0.                                                                               
    read table gt_services into w_service with key pckg_no = w_service2-subpckg_no.
                    if sy-subrc eq 0.                                                                               
    move: w_total-val_gr_for to w_service-quantity,
                            '1'                to w_service-gr_price.
                      modify gt_services index sy-tabix from w_service transporting quantity gr_price.
                    endif.
                  endif.
                else. "nothing delivered yet, set deletion flag
                  w_itemx-po_item = w_item-po_item.
                  w_itemx-delete_ind = 'X'.
                  append w_itemx to gt_itemx.
                  clear: w_itemx.
                  w_item-delete_ind = 'L'.
                  modify gt_item index w_count from w_item transporting delete_ind.
                endif.
        call function 'BAPI_PO_CHANGE'
          exporting
            purchaseorder = w_ekko-ebeln
            poheader      = w_header
            poheaderx     = w_hdrx
            testrun       = w_testrun_flag
            no_messaging  = 'X'
          importing
            expheader     = w_exphdr
          tables
            return        = gt_return1
            poitem        = gt_item
            poitemx       = gt_itemx
            poservices    = gt_services.
    Thanks, please help.
    regards Rob
    Edited by: xsmid4 on Nov 2, 2011 11:49 AM
    Edited by: xsmid4 on Nov 2, 2011 12:08 PM

    Hi,
    Take a look at OSS Note 827731. It might be helpful to you.
    [ Link for Note 827731|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=827731]
    Regards,
    koolspy.

  • Dump during creation of service entry sheet (ML81N)

    Dump during creation of service entry sheet (ML81N)
    Hi,
    ML81N>Select PO>Enter>goto entry sheet create (empty page)>service entry sheet displayed with internal no. assigned >click tab "service selection">Input PO No.--> enter (here we get Dump ABAP RUNTIME ERROR "TABLE_INVALID_INDEX").
    This is happening only for some POs. What can be the problem?. Is this has something to do with SAP database ???
    - rahul

    Hi,
    it could have the cause that the note 1113220 was missing from your system or that data are inconsistent in your PO.
    If you implemented 1113220 and you still get the dump, please check in transaction ST22 the run time error long text to the dump:
    Parts:
    - How to correct the error?
    - Information on where terminated
    - Source Code Extract -> if you set a breakpoint before the line where the error occured, you could debug the process.
    - Active Calls/Events: if you have an own program displayed here, please check first your program wether it has caused the issue.
    If these do not help to find out the problem cause, please open a SAP ticket and include all of the relevant information regarding the dump.
    Regards,
    Edit

  • Error in Transformation file

    Hi,
    While processing the transformation file in TST Server i am getting the error as " Error in ABAP/4 statement when processing an internal table. table"
    However same transformation file works fine in DEV Server.
    Anurodh

    I checked from backend through ST22.
    I  am getting error as TABLE_INVALID_INDEX and issue in ABAP Program SAPLRSSEM_UCR0 in "RSSEM_CONSOLIDATION_INFOPROV".
    The main program was "SAPMSSY1 ".
    And termination point in line 231 of the (Include) program "LRSSEM_UCR0U02".

  • Unable to upload RTF file in the long text

    Hi all,
    Could you please help me out in this issue. I am trying to upload the RTF file in the long text editor through this menu path Text-> Upload->RTF file.The RTF file is about only 56 KB memory size consists only texts.
    I could able to select the file and when i am executing , ABAP dump is showing as follows:
    Runtime error : TABLE_INVALID_INDEX
    abap program : SAPLSTXK
    Whether any SAP notes to be applied for this ?
    Please throw you ideas
    Regards,
    Suresh.

    try this.
    REPORT YCMTESTE LINE-SIZE 255 MESSAGE-ID TD.
    PARAMETERS:
    TEXTNAME LIKE THEAD-TDNAME DEFAULT 'SAPSCRIPT-DRUCKERTEST',
    FILE LIKE RLGRAP-FILENAME DEFAULT 'C:\temp\'.
    DATA: TEXTHEADER LIKE THEAD.
    DATA: TEXTLINES LIKE TLINE OCCURS 100 WITH HEADER LINE.
    CALL FUNCTION 'READ_TEXT'
    EXPORTING NAME = TEXTNAME
    LANGUAGE = SY-LANGU
    OBJECT = 'TEXT'
    ID = 'ST '
    IMPORTING HEADER = TEXTHEADER
    TABLES LINES = TEXTLINES
    EXCEPTIONS OTHERS = 1.
    CHECK SY-SUBRC = 0.
    CALL FUNCTION 'EXPORT_TEXT'
    EXPORTING CODEPAGE = '1133'
    FILE = FILE
    FORMATWIDTH = 132
    FORMAT_TYPE = 'RTF'
    HEADER = TEXTHEADER
    SSHEET = ' '
    WITH_TAB = ' '
    TABLES ITF_LINES = TEXTLINES
    EXCEPTIONS DOWNLOAD_ERROR = 1
    FILE_OPEN_ERROR = 2
    FILE_WRITE_ERROR = 3.
    CASE SY-SUBRC.
    WHEN 0. MESSAGE S807 WITH FILE.
    WHEN 1. MESSAGE E815 WITH FILE.
    WHEN 2. MESSAGE E811 WITH FILE.
    WHEN 3. MESSAGE E814 WITH FILE.
    ENDCASE.
    Reference::[http://help.sap.com/saphelp_sm32/helpdata/en/d6/0db7f3494511d182b70000e829fbfe/content.htm]
    <removed_by_moderator>
    Edited by: Juan Reyes on May 16, 2011 12:05 PM

  • Error in Doing MIRO

    Dear Friends,
    When I am trying to do MIRO Posting, sytem is not showing any messages, but when I tried to save the document it is going to ABAP runtime error as follows:  Can anybody throw some light on this issue.
    Runtime Errors         TABLE_INVALID_INDEX
    Date and Time          09.07.2009 15:01:19
    Short dump has not been completely stored (too big)
    Short text
         Error in ABAP/4 statement when processing an internal table.
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLGLT0" had to be terminated because it ha
         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
         When changing or deleting one or more lines of the internal table
         "\FUNCTION-POOL=MR1M\DATA=YDRSEG[1]-CO" or when inserting in the table
          "\FUNCTION-POOL=MR1M\DATA=YDRSEG[1]-CO", 0 was used as

    Hi,
    Please, implement note 1167546.
    Regards,
    Eli

  • Regarding Script

    Hi ,
    I have a form (script) called ZZ_S_SD_ORD_CONF.
    This comes under Sales Order(RVORDER01).
    And there is a window called as REFNUMB in form Layout ZZ_S_SD_ORD_CONF, As soon as I click on this window and select Text Elements. It  gave Run Time Error. It is saying that there is a problem in Standard Program SAPLSTTXK.
    We were given a Standard Script Form that is  Z_SALES_BILLING .
    Even with this Form (Z_SALES_BILLING) also (is standard for us), the same problem has occured.
    I only have tried to  view the data, then it gave an error.
    I want to see what is available in that window, but I am unable to view it.
    I am unable to send the screen shot of it.
    problem is at line 1049.
    so i am sending the error text which has occured.please don't mind.
    Kindly solve this problem.
    Runtime Errors         TABLE_INVALID_INDEX
    Date and Time          01/15/2008 06:58:58
    ShrtText
         Error in ABAP statement when processing an internal table.
    What happened?
         Error in ABAP application program.
         The current ABAP program "SAPLSTXK" 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
         When changing or deleting one or more lines of the internal table
         "\FUNCTION-POOL=STXK\DATA=ITF_STRING[]" or when inserting in the table
          "\FUNCTION-POOL=STXK\DATA=ITF_STRING[]", 0 was used as
         the line index. An index less than or equal to zero is not
         allowed.
         The error can occur when using the following options:
         1. "INDEX idx" for specifying the line number in the table
          "\FUNCTION-POOL=STXK\DATA=ITF_STRING[]"
            where you want to change, insert or delete.
         2. "FROM idx" for specifying the start index when deleting a line
           area from or inserting a line area into the table
         "\FUNCTION-POOL=STXK\DATA=ITF_STRING[]".
        3. "TO idx" for specifying the end index when deleting a line
           area from or inserting a line area into the table
         "\FUNCTION-POOL=STXK\DATA=ITF_STRING[]".
        When the program terminated, the table had 0 lines.
    Trigger Location of Runtime Error
        Program                                 SAPLSTXK
        Include                                 LSTXKFRN
        Row                                     1,050
        Module type                             (FORM)
        Module Name                             RESET_RTF_STYLE_NEW
    Source Code Extract
    Line  SourceCde
    1020   ENDIF.
    1021
    1022 ENDFORM.                    " SET_RTF_STYLE_NEW
    1023
    1024 &#38;----
    1025 *&#38;      Form  TOKEN_CTAG_END
    1026 &#38;----
    1027 *       finish character tag
    1028 ----
    1029 *      &lt;-&gt;P_TOKEN  actual token                                        *
    1030 ----
    1031 FORM token_ctag_end CHANGING p_token TYPE itf_token.
    1032
    1033   CHECK p_token-code = c_token_ctag_end.
    1034   PERFORM reset_rtf_style_new.
    1035
    1036 ENDFORM.                    " TOKEN_CTAG_END
    1037
    1038 &#38;----
    1039 *&#38;      Form  RESET_RTF_STYLE_NEW
    1040 &#38;----
    1041 *       new version of reset_rtf_style
    1042 ----
    1043 FORM reset_rtf_style_new.
    1044   DATA: l_len      TYPE i,
    1045         l_size     TYPE i.
    1046
    1047   READ TABLE itf_string INDEX itf_stack.
    1048   READ TABLE itf_sstyle WITH KEY tdstring = itf_string. "BINARY SEARCH.
    1049   IF sy-subrc &gt; 0.
    > > > > >     DELETE itf_string INDEX itf_stack.
    1051     SUBTRACT 1 FROM itf_stack.
    1052     EXIT.
    1053   ENDIF.
    1054
    1055   IF protspace = true.
    1056     DESCRIBE TABLE itf_protect LINES l
    1057     READ TABLE itf_protect INDEX l_siz
    1058     READ TABLE itf_string INDEX itf_st
    1059     IF itf_protect = itf_string.
    1060       protspace = false.
    1061     ENDIF.
    1062   ENDIF.
    1063
    1064   token_control = true.
    1065
    1066 * if ssheet = 'ONLINE_HELP.DOT' and
    1067 *   ( itf_string = 'DS' or itf_string
    1068 *   ind_hyperlink = true.
    1069 *   ind_hyperlink = false.
    Thanks,
    Vinod.

    As per error text, the error is in line,
    READ TABLE itf_sstyle WITH KEY tdstring = itf_string. "BINARY SEARCH.
    Internal table itf_string didnot contain any lines. Debug the program or just manually pass the index value 1 for reading the internal table to find the error.

  • Errors in rsa3!!

    Hi Gurus,
    I added a field called zzstprs in 0mat_plant_attr, when iam checking in rsa3, given below errors! can any one help me pls!!
    RUN TIME ERRORS     TABLE_INVALID_INDEX
    error in abap statement when processing an internal tables..(probably abap programming error)
    my abap programme is :
    *declaration
    data : l_biw_marc_s like biw_marc_s,
    v_zzstprs like mbew-stprs.
    case i_datasource.
    when '0MAT_PLANT_ATTR'(001).
    loop at i_t_data into l_biw_marc_s.
    *data: L_tabix type i.
    data : l_tabix like sy-tabix.
    clear v_zzstprs.
    select single stprs from mbew into v_zzstprs
    where matnr = l_biw_marc_s-matnr and
    bwkey = l_biw_marc_s-werks.
    if sy-subrc = 0.
    l_biw_marc_s-zzstprs = v_zzstprs.
    *l_biw_marc_s-zzstprs = v_zzstprs.
    endif.
    modify i_t_data from l_biw_marc_s index l_tabix.
    endloop.
    endcase.
    U r help will be appriciated!!
    Regards,
    Jay

    Hi,
    Statement in bold was missing and also do not declare variables in the loop .  Modify the program as below and test in RSA3.
    data : l_biw_marc_s like biw_marc_s,
    v_zzstprs like mbew-stprs,
    l_tabix like sy-tabix.
    case i_datasource.
    when '0MAT_PLANT_ATTR'(001).
    loop at i_t_data into l_biw_marc_s.
    <b>l_tabix = sy-tabix.</b>
    clear v_zzstprs.
    select single stprs from mbew into v_zzstprs
    where matnr = l_biw_marc_s-matnr and
    bwkey = l_biw_marc_s-werks.
    if sy-subrc = 0.
    l_biw_marc_s-zzstprs = v_zzstprs.
    *l_biw_marc_s-zzstprs = v_zzstprs.
    endif.
    modify i_t_data from l_biw_marc_s index l_tabix.
    endloop.
    endcase.
    Regards,
    Prakash

  • ABAP Runtime Error  (Code 14)

    Hi,
    We have SAP NetWeaver 7.0 SR2 ABAP+Java on Linux: Oracle
    I am with the following problem applying Suport Package SAPKB70014
    returns the error:
    Runtime Errors         TABLE_INVALID_INDEX
    Date and Time          26.05.2008 16:10:14
    Short text
        Error in ABAP/4 statement when processing an internal table.
    Error analysis
        When changing or deleting one or more lines of the internal table
        "\FUNCTION=TR_READ_AND_DISPLAY_LOG\DATA=LT_LINES" or when inserting in the
         table "\FUNCTION=TR_READ_AND_DISPLAY_LOG\DATA=LT_LINES", "-1" was used as
        the line index. An index less than or equal to zero is not
        allowed.
        The error can occur when using the following options:
        1. "INDEX idx" for specifying the line number in the table
         "\FUNCTION=TR_READ_AND_DISPLAY_LOG\DATA=LT_LINES"
           where you want to change, insert or delete.
        2. "FROM idx" for specifying the start index when deleting a line
           area from or inserting a line area into the table
         "\FUNCTION=TR_READ_AND_DISPLAY_LOG\DATA=LT_LINES".
        3. "TO idx" for specifying the end index when deleting a line
           area from or inserting a line area into the table
         "\FUNCTION=TR_READ_AND_DISPLAY_LOG\DATA=LT_LINES".
        At the time of the termination, the table contained 38755 lines.
    Trigger Location of Runtime Error
        Program                                 SAPLSLOG
        Include                                 LSLOGF03
        Row                                     231
        Module type                             (FORM)
        Module Name                             READ_LOG_FILE
    Source Code Extract
    219 *& -
      Output the result -
    220   IF lv_stop_index = 0.
    221 *& exception 5 : lt_lines = 0  empty log.
    222     MESSAGE i293(pu).
    223   ELSE.
    224
    225 *& reduce pt_lines to the required parts.
    226
    227 * delete block before required
    228     IF  lv_start_index <> 1 .
    229       lv_delblock1_beg  = 1 .
    230       lv_delblock1_end  = lv_start_index - 1  .
    >>>       DELETE pt_lines FROM lv_delblock1_beg   TO lv_delblock1_end  .
    232     ENDIF.
    233
    234 * delete block after required
    235     IF lv_stop_index <> lv_line_num  .
    236       lv_delblock2_beg = lv_stop_index - lv_start_index  + 2 .
    237       lv_delblock2_end = lv_line_num  - lv_start_index  +  1 .
    238
    239       DELETE pt_lines FROM lv_delblock2_beg   TO lv_delblock2_end  .
    240
    241     ENDIF .
    242
    243   ENDIF.
    244
    245
    246 ENDFORM.                               " READ_LOG_FILE
    247
    248 &----
    249 *&      Form  READ_LOG_DB
    250 &----
    Any one help me resolve this problem.
    PLS

    Hi Mikhail,
    I'd a similar problem in one project I've developed. Check the system log to see if you can debug the problem: tcode sm21.
    In my case I had to implement some SAP Notes and upgrade from SP10 to SP11.

  • ABAP Routine Variable in DTP filter

    Helllo,
    I am trying to create a routine in the Filter of DTP, so that I can only pass records that are between sy-datum and 12/31/9999 date range. In the filter are of DTP I created ABAP routine with this code:
    form compute_HE_SPCEND
      tables l_t_range structure rssdlrange
      changing p_subrc like sy-subrc.
          Insert source code to current selection field
    $$ begin of routine - insert your code only below this line        -
    data: l_idx like sy-tabix.
              read table l_t_range with key
                   fieldname = 'HE_SPCEND'.
              l_idx = sy-tabix.
              data: v_day type dats.
              v_day = sy-datum.
              l_t_range-sign = 'I'.
              l_t_range-option = 'BT'.
              l_t_range-low = v_day.
              l_t_range-high = '99991231'.
                modify l_t_range index l_idx.
              p_subrc = 0.
    $$ end of routine - insert your code only before this line         -
    endform.
    However, when I execute the DTP I get an ABAP dump TABLE_INVALID_INDEX. Do you see anything wrong with the code?
    Thank you
    Edited by: AG on Jul 10, 2009 2:31 PM

    Thanks Mr V.
    I added that part of code. So now my code looks like this:
    form compute_HE_SPCEND
      tables l_t_range structure rssdlrange
      changing p_subrc like sy-subrc.
          Insert source code to current selection field
    $$ begin of routine - insert your code only below this line        -
    data: l_idx like sy-tabix.
              read table l_t_range with key
                   fieldname = 'HE_SPCEND'.
              l_idx = sy-tabix.
              data: v_day type datum.
              v_day = sy-datum.
              l_t_range-sign = 'I'.
              l_t_range-option = 'BT'.
              l_t_range-low = v_day.
              l_t_range-high = '99991231'.
             if l_idx <> 0.
                modify l_t_range index l_idx.
              else.
                append l_t_range.
              endif.
              p_subrc = 0.
    $$ end of routine - insert your code only before this line         -
    endform.
    I do not get the ABAP dump anymore, but I still have the problem. When I run the DTP, It gets errors. In a log it says that it cannot determine the value:
    @5C@     Incorrect initial value for characteristic 0HE_SPCEND in i_t_range     @35@
    @5C@     Error while extracting from source ZHE_O03 (type DataStore)     @35@
    @5C@     Package 1 / 07/10/2009 14:43:41 / Status 'Processed with Errors'     @35@
    Am I missing something? Looks like the values still do not get assigned to the field in the filter through my routine.
    Thanks

  • No Data Initialized for Purchasing Extractors (2LIS_02_ITM)

    Hello Experts,
    We are in R/3 4.6 C PI 2005, I am trying to fill the setup tables  for Purchasing Extractors. I tried with different seletions. After executing the T-code OLI3BW, in RSA3 always it is showing 0 Records. Please advice.
    Following is the Error message some times I will Get, If I have a selection( Ex PO NUmbers Rage, or Date Range) I wont Get any error message same time it wont display any other message.
    =====
    ABAP runtime errors    TABLE_INVALID_INDEX                                                           
           Occurred on     06/08/2009 at 14:00:13                                                                               
    >> Short dump has not been completely stored. It is too big.                                                                               
    1. "INDEX idx" for specifying the line number in the table                                           
    "\PROG=SAPLEINS\DATA=XMCEKET[]"                                                                     
       where you want to change, insert or delete.                                                       
    2. "FROM idx" for specifying the start index when deleting a line                                    
       area from or inserting a line area into the table                                                 
    "\PROG=SAPLEINS\DATA=XMCEKET[]".                                                                    
    3. "TO idx" for specifying the end index when deleting a line                                        
       area from or inserting a line area into the table                                                 
    "\PROG=SAPLEINS\DATA=XMCEKET[]".                                                                               
    How to correct the error                                                                               
    If the error occurred in one of your own programs or in an SAP program                               
    that you modified, try to correct it yourself.                                                                               
    If the error occurred in a non-modified SAP program, you may be                                      
    able to find a solution in the SAP note system.                                                      
    If you have access to the note system yourself, use the following                                    
    search criteria:                                                                               
    "TABLE_INVALID_INDEX"                                                                               
    "SAPLEINS " or "LEINSF2U "                                                                          
    "LIS_VERTEILUNG_LF"                                                                               
    ============
    Thanks.
    Edited by: BPSNEW on Jun 18, 2009 10:38 PM

    Hi Krishna:
    Please check if SAP Note 1454260 - "BW/LIS: RMCENEUA dump with TABLE_INVALID_INDEX" is applicable to your system.
    Regards,
    Francisco Milán.

  • ABAP Runtime error at simulating MIRO

    Hello SAPians,
    My user is getting the "ABAP Runtime Error" when simulating the MIRO. My technical consultant has given the below results. Please let me know how to handle this. As this is a standard program we don't want to change. Please find the below things:
    The code is in include LGLT0F61 and the internal table is item_l.
    Code :
       LOOP AT difference WHERE wrbtr <> 0.
       IF difference-curtp = qm.
         ADD difference-wrbtr TO item_l-accit-pswbt.
       ELSE.
         READ TABLE item_l-acccr INTO acccr_l
                                 WITH KEY curtp = difference-curtp. " This condition fails
         ADD difference-wrbtr TO acccr_l-wrbtr.
         MODIFY item_l-acccr FROM acccr_l INDEX sy-tabix. "Table cannot be modified with zero entries in it
       ENDIF.
    ENDLOOP.
    Thanks,
    JK

    Hi,
    We are also getting TABLE_INVALID_INDEX  Dump in LGLT0F61.
    Delete rounding differences
    LOOP AT difference WHERE wrbtr <> 0.
      IF difference-curtp = qm.
        ADD difference-wrbtr TO item_l-accit-pswbt.
      ELSE.
        READ TABLE item_l-acccr INTO acccr_l
                                WITH KEY curtp = difference-curtp.
        ADD difference-wrbtr TO acccr_l-wrbtr.
        MODIFY item_l-acccr FROM acccr_l INDEX sy-tabix.
      ENDIF.
    ENDLOOP.
    Could you please suggest me how to solve this.
    Thanks
    Bhuvana

  • SAP Runtime error when expanding menu in SE43

    Hi,
    I receive a runtime error after 10 clicks while expanding menu in SE43. Even when expanding the tree in se43 the system issues a warning saying not all will be expanded. Why this happened.
    Kindly help.
    Runtime Error: TABLE_INVALID_INDEX
    Thanks & Best Regards.

    Hi,
    I receive a runtime error after 10 clicks while expanding menu in SE43. Even when expanding the tree in se43 the system issues a warning saying not all will be expanded. Why this happened.
    Kindly help.
    Runtime Error: TABLE_INVALID_INDEX
    Thanks & Best Regards.

  • MRP Total Planning in Back Ground job(RMMRP000)  Doesn't work

    Hi Gurus
    I set a background job for Running MRP (RMMRP000) but it doesn't work but when I run MRP for products one by one,it works.
    Does any one know about Why it operates such a way and if it need Specific Setting in Customization.
    Thanks
    Babak Bolourchi

    hi
    check whether these sap notes can help
    704310 ATP server not supplied in background total planning run 14.09.2009
    104475 Performance 'deliv completed' indic for purch ord (ATP_EKET) 23.06.2009
    354310 MOD MD01: Planned delivery time from outline agreement 18.05.2009
    1308329 Runtime error COMPUTE_FLOAT_ZERODIVIDE in program SAPLM61U 20.02.2009
    150774 FMM: Update terminations when updating from MM 20.11.2008
    1177408 MRP run with scope of planning generates TABLE_INVALID_INDEX 13.06.2008
    1176611 Cross-plant material status ignored during AFS MRP run 06.06.2008
    23278 MD01, MDBT: Performance during MRP run

Maybe you are looking for

  • DVD from FCP

    How to make the best DVD form a timeline in FCP. Do i have to de-intertace to make a non flickering DVD. thanks

  • How do i read .epm files on my macbook pro?

    I have a hardrive I nned to open and the computoer says it does not recognize it.  In my office mates PC, she says the files end ".epm".  Is there a program I can download to make the disk readible on my macbook pro?

  • How to make key date of query as transcation date in cube

    I am facing an issues in displaying the transaction data with time dependent master data. I want to set the key date of the query to go against the transaction date and diplay the respective master data. I read in other posts, that i cant use the use

  • WS-Security:  Fail to configure Keystore and Identity Certificates

    Hi, This is my first question here! I want to set a secure web service, following the guide "Web Services Security Guide" i set up the keystore and Identity Certificates with a keystore that contains two certificates created by me, I set the keys to

  • Is it possible to have a different SLO for different support groups?

    Example: Service Desk receives an IR at 8AM and an SLO is applied to it with 4 hours to resolve at 12PM. An analyst assigns the IR to them and sets the first response. After 3 hours of troubleshooting they determine that it needs to be sent to anothe