Time_out error in EKBE selection

Time_out Dump error is coming while selecting fields from EKBE. in Where condition, 2 primary keys GJAHR and BELNR have been used. Whether I should go for creating new seconday indices or not?

Hi,
If this is your code,
SELECT ebeln gjahr belnr FROM ekbe
INTO TABLE lt_ponum
FOR ALL ENTRIES IN lt_awkey
WHERE gjahr = lt_awkey-gjahr
AND belnr = lt_awkey-belnr.
Better you will go to RSEG for getting the PO and item for the given belnr and gjahr.  And if you want to use the table EKBE means try the following logic.
SELECT p~EBELN p~EBELP p~GJAHR p~BELNR p~BUZEI
    FROM  EKBE AS p
    INNER JOIN RSEG AS s
    ON   s~BELNR EQ p~BELNR
      AND s~GJAHR EQ p~GJAHR
      AND s~ebeln EQ p~ebeln
      AND s~ebelp EQ p~ebelp
    INTO corresponding fields of TABLE t_inv_details
FOR ALL ENTRIES IN lt_awkey
    WHERE s~gjahr = lt_awkey-gjahr
        AND s~belnr = lt_awkey-belnr.
I hope you will not get time out error.

Similar Messages

  • BI 7.01 BEx report/workbok Time_Out Errors

    Hi,
    Our BEx reports/workbooks are failing with time_out error's. Below are the time_out error details: BEx workbooks are executed through VB Script.
    Some days they run fine and some days they time_out.
    The program "CL_RSDRH_HIER_CACHE===========CP" has exceeded the maximum
    permitted runtime without
    interruption and has therefore been terminated.
    Programs with long runtime should generally be started as background
    jobs. If this is not possible, you can increase the system profile
    parameter "rdisp/max_wprun_time".
    Depending on the cause of the error, you may have to take one of the
    following measures:
    - Endless loop: Correct program;
    - Dataset resulting from database access is too large:
    Instead of "SELECT * ... ENDSELECT", use "SELECT * INTO internal table
    (for example);
    - Database has unsuitable index: Check index generation.
    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:
    "TIME_OUT" " "
    "CL_RSDRH_HIER_CACHE===========CP" or "CL_RSDRH_HIER_CACHE===========CM00D"
    "ADD_MEM"
    Other time_out error's as below:
    1) The program "SAPLRSDRC_SPLIT" has exceeded the maximum permitted runtime
    without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "SAPLRSDRC_SPLIT" - in "SELAGGR_GET2".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 1101
    of the (Include) program "LRSDRC_SPLITF01".
    2) The program "CL_RSDRH_HIER_CACHE===========CP" has exceeded the maximum
    permitted runtime without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "CL_RSDRH_HIER_CACHE===========CP" -
    in "CHECK".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 80
    of the (Include) program "CL_RSDRH_HIER_CACHE===========CM001".
    3) The program "SAPLRSDRC_SPLIT" has exceeded the maximum permitted runtime
    without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "SAPLRSDRC_SPLIT" - in
    "SELDR_TO_AGGROBJ".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 214
    of the (Include) program "LRSDRC_SPLITF01".
    4) The program "SAPLSENA" has exceeded the maximum permitted runtime without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "SAPLSENA" - in "FLUSH_PACKAGE".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 229
    of the (Include) program "LSENAF01".
    Recently we have increased the parameter "rdisp/max_wprun_time" from 5400 to  7200 Seconds.
    Pl. advise.

    Hello,
    I think this is quite easy.
    Execute the report SAP_DROP_TMP_TABLES (via SE38 transaction) and the issue should be solved.
    For more details, see notes 698280 and 1139396.
    Let me know if persist.
    Best Regards,
    Edward John

  • Getting time_out Error in report bcos of SQL Statement!

    Hi Experts,
    I am getting Time_out error  in my big program because of Select statement.I have checked in SQL Trace AND  fuond the message
    "SQL0104N  An unexpected token "vakey" was found following "umh
      kschl".  Expected tokens may include:  ",".  SQLSTATE=42601"
    I have given the following code and SQL statement where the error is getting occured.Please help.
    TYPES: BEGIN OF ty_vakey1,
               vakey TYPE vakey,
             END OF ty_vakey1,
             ty_t_vakey1 TYPE HASHED TABLE OF ty_vakey1 WITH UNIQUE KEY vakey.
      DATA: ih_vakey1 TYPE ty_t_vakey1,
            wa_vakey1 TYPE ty_vakey1,
            wa_vakey  TYPE ty_vakey.
      LOOP AT i_vakey INTO wa_vakey.
        wa_vakey1-vakey = wa_vakey-vakey.
        COLLECT wa_vakey1 INTO ih_vakey1.
        CLEAR wa_vakey1.
      ENDLOOP.
      IF ih_vakey1 IS NOT INITIAL.
    Here it is required to select the Key field and so cannot be used in Where condition
        SELECT knumh                                             "Condition record number
               kschl                                             "Pricing conditions
               vakey                                             "Variable Key
               datab                                             "Valid-From Date
               datbi                                             "Valid To Date
               FROM konh
               INTO TABLE i_konh
               FOR ALL ENTRIES IN ih_vakey1
               WHERE vakey EQ ih_vakey1-vakey .           "#EC CI_NOFIELD
    Here #EC CI_NOFIELD is used because the key field of the table konh ( ie knumh)
    is to be selected and so is not used in the WHERE condition above
        IF sy-subrc NE c_0.
    No data found for specified criteria
          MESSAGE i036.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Thanks&Regards,
    Sarkar

    Check if i_konh definition matches the fields in the SELECT statement.
    Also, since you're not using the primary key when selecting from KONH table, such program by design is going to run forever and may time out eventually. Usually KONH is a very large table. Not sure what's the purpose of this program, but I'm pretty sure there must be some other way to program this. There are actually some standard FMs that read the conditions.
    A secondary index might help, but only as a last resort.

  • Due to huge data TIME_OUT Error

    Hi All
    Can anybody help me out from TIME_OUT error
    I have declared types as per table FAGLFLEXA field sequence
    Before checking the for all entries with table FAGLFLEXA, i was deleted duplicate entries from table BSAS
    after deleted the duplicate records in BSAS table contains 3500000 records, because of this reason it goes to TIME_OUT error
    Can you please suggest the solution to resolve this TIME_OUT error
    Thanks in Advance
    Sekhar
    Moderator message: one thread only per issue, please.
    Edited by: Thomas Zloch on Feb 1, 2012

    Hi,
    1. Run your program in background and check it in sm37, whether it processed or not.
    2. Do performance tuning on select statements , nested loops, non-primary keys,......
    3. go to RZ11  -
    provide  ' rdisp/max_wprun_time '   -
    display and then check the process time, increase the process time by clicking on change button   like( ex: 600  to  1200)
    and also check with  ' abap/timeout '
    Edited by: Parupelly on Feb 1, 2012 3:30 PM
    Edited by: Parupelly on Feb 1, 2012 3:30 PM

  • Upon upgrading iPhoto, iPhoto Help no longer works.  It gives the error message:  "The selected topic is currently unavailable. To see all iPhoto Help, you must be connected to the Internet." Help!?

    Upon upgrading iPhoto, iPhoto Help no longer works.  It gives the error message:  "The selected topic is currently unavailable. To see all iPhoto Help, you must be connected to the Internet."   I am obviously connected to the internet since you are reading this.
    I tried upgrading permissions but it did not help!?  Can anyone tell me what is wrong?  Thanks

    Try
    Reboot the computer, see if that fixes it.
    Then try:
    Backup your files off the computer (not TimeMachine) and disconnect
    Hold c boot off the 10.6 disk and simply reinstalling OS X
    Log in and update to 10.6.8
    c boot off the 10.6 disk again and use Disk Utility >Repair Disk
    reboot and all should be fine, except some third party programs that install kext files, those will have to be reinstalled from fresh sources.

  • TIME_OUT error while executing an ABAP report

    Hi All,
    I have an ABAP report in which the code looks like below
    LOOP AT pernr_tab . " *Internal table consists of  around 25k records* 
       IF last_run_date IS INITIAL. " Initial Load
          PERFORM fill_data USING pernr_tab-pernr last_run_date CHANGING lv_flag.
          lv_flag = 'x'.
          initial_count = initial_count + 1.
        ELSE.
          PERFORM fill_data USING pernr_tab-pernr last_run_date CHANGING lv_flag.
          IF pernr_tab-status EQ '3' AND pernr_tab-begda GE today. " Future Hire records during delta load
            lv_flag = 'x'.
          ENDIF.
          IF lv_flag EQ 'x'.
            delta_change_count = delta_change_count + 1.
          ENDIF.
        ENDIF.
        IF lv_flag = 'x'. "initial load or changes in some infotype for delta load
          PERFORM append_data.
          CLEAR: p0000_tab[],p0000,p0001_tab[],p0001,p0002_tab[],p0002,p0006_tab[],p0006,p0006_phone,
    p0007_tab[],p0007,p0027_tab[],p0027,p0032_tab[],p0032,p0105_tab_usr[],p0041_tab[],p0041.
          CLEAR: p0105_usr,p0105_tab_ven[],p0105_ven,p0105_tab_mgr[],p0105_mgr,p0709_tab[],p0709,pos_id,
    functional_title,p0521_tab[],p0521,p2001_tab[],p2001,corporate_band_code,corporate_title_code,wa_pernr_tab.
        ENDIF.
      ENDLOOP.
    inside the loop i am fetching data from 10 different infotypes and adding into another internal table.When I execute this program it is giving TIME_OUT error.Is there any way i can resolve this issue(I dont want to run this program in the background)
    Thanks
    Bala Duvvuri
    Edited by: Bala Duvvuri on Jul 13, 2010 8:25 AM
    Edited by: Thomas Zloch on Jul 13, 2010 4:58 PM - line width reduced

    fill_data
    reading 10 infotypes
    call function 'HR_READ_INFOTYPE'
      exporting
    *     TCLAS                 = 'A'
        pernr                 = p_pernr_tab_pernr
        infty                 = '0000'
       begda                 = '18000101'
       endda                 = '99991231'
    *   bypass_buffer         = 'X'
      tables
        infty_tab             = p0000_tab
    exceptions
       infty_not_found       = 1
       others                = 2
      if sy-subrc <> 0.
      endif.
      if p0000_tab[] is not initial.
        sort p0000_tab by endda  descending.
        read table p0000_tab into p0000 index 1.
        if p0000-aedtm ge last_run_date.
          lv_flag = 'X' ." Infotype 0 has been changed
        endif.
      endif.
    append_data
    assigning 50 different fields from above infotypes to ls_emp_data
    ls_emp_data-functional_title = functional_title.
      ls_emp_data-last_update = today.
      if ( p2001-awart = '5006' and p2001-begda <= today and p2001-endda >= today ) or
    ( p0521-atzph = 'AB' AND p0521-begda <= today AND p0521-endda >= today ).
        ls_emp_data-absent = text-007.
      ELSE.
        ls_emp_data-absent = text-008.
      ENDIF.
      ls_emp_data-corporate_band_code = corporate_band_code.
      ls_emp_data-corporate_title_code = corporate_title_code.
      APPEND ls_emp_data TO lt_emp_data.
      CLEAR:ls_emp_data,lv_flag.
    Thanks
    Bala Duvvuri
    Edited by: Thomas Zloch on Jul 14, 2010 2:48 PM - code tags added

  • Error Message in selection screen Status bar is getting truncated

    Hi Guys,
    Error Message in selection screen Staus bar is getting truncated (full message is not getting displayed).... can anybody tell me how to reslove this

    Hi
    Maimum we can give the error message length is 50 char. If you give more than that it will get truncated.
    What you can do this split 50 and 50 like that you can give 200 chnars.
    Data : Text1 type char50
              Text2 type char50
    If sy-surc ne 0.
    Message Text1 Text2  TYPE "E'' or 'S'
    endif.

  • TIME_OUT error with /sapapo/rtsinput_cube

    We are in the process of cutting over to a new
    planning area ZPA2 with data from a backup InfoCube
    (ZIC21), and the /sapapo/rtsinput_cube program
    is failing with a TIME_OUT error.
    The overall job finishes with a success message,
    although data is only partially loaded in to the
    planning area. When you look at the spool, the first
    steps are green, then the job times out for the
    subsequent steps.
    We ran this first with 3 key figures being loaded
    from cube to planning area for approx 1/5 of 464000
    CVCs for 5 years in monthly buckets only.
    This errored with SAPSQL_INVALID_FIELDNAME message as
    well as the TIME_OUT error message, and data was
    loaded partially in the ZPA2 planning area (only 2
    months).
    We then reduced the time horizon from 5 years of
    months to be only 1 year in months.
    This errored with the TIME_OUT error message. Again,
    data was partially loaded in to the planning area
    (about 7 of the 12 months was loaded).
    The prime issue is with the constant time out.
    Has anyone any idea how to solve this problem ?

    not sure what version you are using but if you are on the latesr versions, its a good idea to use parallel processing - you can find it on the additonal settings tab
    you can also set it to copy only the specified period (previously it copied the whole bucket in the planning area to cover the time period)
    if you are in versions that dont support this - then you can create parallel jobs that get triggered by an event or use a process chain and run this in parallel. As long as you dont overlap the periods it should be fine
    you should also ask your basis team to check the time out set up for the application and get it extended (you can see this in rz11 i think and choosing the correct parameter - would leave it to the basis folks to help in this) Alternately check your processing power and see if you can get it increased

  • TIME_OUT error while trying to execute a report

    Hi all,
    When I try to exceute a Z report using a particular variant, it displays the output.
    However, when another person tries to run the same Z report using the same variant, it gives a TIME_OUT error.
    ABAP runtime errors    TIME_OUT
    Time limit exceeded.
    Please let me know the reason for this.
    Thanks and regards,
    Anishur

    Hi Anishur,
    Is the TIME OUT occuring on the same client as you are running the report?  And if so, does the user have the same authorisation as you?  The TIME OUT will occur if the program is handling more data, if you are seeing different performance it will be down to the amount of data process.
    As others have suggested, look at improving the performance of the report.
    Regards,
    Nick

  • Error msg, "Maximum selection does not contain value 9999999999.

    Hi, I am getting this error wile doing Reclassification of HFM Movement.
    Error msg, "Maximum selection does not contain value 9999999999 of subassignment HFM CD2 & Asset Type "                                         
    in the Data Monitor, ( in Reclass Net Reserve). While running BCF task for a company for period 16/2009     
    Actually, We have converted the consolidation area from XX(2009) to YY(2010).
    Before this task, user has performed the balance carry forward.
    My Analysis is as follows:-
    Method Used in this Reclassification                                         
    RECYX (Reclassify HFM Movement at YE lvl 10)                                        
         TRIGGER                                   
         Items : 100-299, 9900-9999                                   
         HFM Movement Type : O200 to O300                                   
         Posting Level : 10                                   
         TARGET                                   
         Items : 100-299, 9900-9999                                   
         Move : O100C                                   
         Posting Level : 10                                   
         HFM CD2 and Asset type : Ticked                                    
    After TEST run in UCMON, the error message comes :-                                        
    The "HFM CD2 & Asset Type value 9999999999" is not maintained in Breakdown Categories Y500, Y700  etc.                                        
    Breakdown categories in Workbench                                        
    Maintained as "OPTIONAL, Initialized value allowed".                                        
    Single Selection                                         
    1A                                        
    1B                                        
    AR                                        
    GA                                        
    Default Selection                                        
    99999999999                                        
    BCS CUBE                                         
    HFM CD2 & Asset Type - coming blank               
    LOTR                                        
    HFM CD2 & Asset Type - Coming blank     
    Please help to go forward.
    In Anticipation,
    Deepankar Jain

    Thanks a lot Dan for the reply.
    Yes, the single selection is 1A, 1B etc, I agree that including this default value 9999999999 in single selection will resolve this issue, but the BREAK DOWN TYPE is OPTIONAL, that means It will also consider a blank value, right?
    Also, In the method defined for RECLASSIFICATION in workbench, in the TARGET parameters, the" HFM CD2 and Asset Type"  is blank but the "DEFAULT is TICKED" which makes it a mandatory derivation rule.
    Please correct me if I am wrong.
    Your replies on it are highly appreciated.
    Thanks and Regards,
    Deepankar

  • Error joining the selected airport network?

    I'm trying to connect to my linksys wireless using WPA with a powerbook but no luck. My password which I know is correct (it's working on another G4 and my wife's Gateway. I get the following message when selected my network. "There was an error joining the selected airport network". I can connect via a neighbor's unprotected network, so airport is working. Other times I've tried it says password is incorrect.

    Wi-Fi Protected Access networks normally require a plain-text password or passphrase. But in rare cases you may have to enter a string of 64 delightful hexadecimal characters.
    The HEX password is derived from the plaintext password therefore you shouldn't need to create anything new. Check the linksys router for the HEX version of your plaintext password.
    The AirPort interface doesn't welcome this wonderful practice by default (imagine that), but it's buried in there for when you need it. Just hold down the Option key while choosing your network from the AirPort menu, then you'll be set to enter all 64 of those easy-to-remember characters.
    iFelix

  • Getting an error in this select

    Hi,
    i am getting an error on this select
    select add_months(to_date('31-MAR-'||'to_char(to_date('31-MAR-2011')','YYYY'))-12) from dual
    Kindly help !!!

    Your format-codes are wrong and sometimes missing.
    Please try this:
    select add_months(to_date('31-MAR-'||to_char(  to_date('31-MAR-2011','DD-MON-YYYY'),'YYYY'),'DD-MON-YYYY'),-12) from dual;I did correct it, but it is not nice code. Why do you use the same constant value (31-MAR) twice? The second is only for extracting the year. You could do the same with this:
    select add_months(to_date('31-MAR-2011','DD-MON-YYYY'),-12) from dual;Keep in mind: There is a dependency of the setting of NLS_DATE_LANGUAGE in this code. NLS_DATE_LANGUAGE should be english for you code.
    For example if NLS_DATE_LANGUAGE is GERMAN the code for march will be 'MRZ' instead of 'MAR'.
    The following code would be language independent:
    select add_months(to_date('31-03-2011','DD-MM-YYYY'),-12) from dual;Edited by: hm on 11.09.2011 22:51

  • TIME-OUT error in BSAK select query(Progress Indicator is also used)

    Hi,
        In my report program one select query is there on BSAK table, which is as follows --
           SELECT BUKRS                                                     
                         BELNR
                        GJAHR
                        SHKZG
                        BSCHL
                        UMSKZ
                        LIFNR
                        EBELN
                        EBELP
                        WRBTR
                        DMBTR
                        XZAHL
                        REBZG
                       AUGBL
                       BLART
                       AUFNR
                       AUGDT
                       BUZEI FROM BSAK
                                  INTO TABLE IT_BSAK
                                  FOR ALL ENTRIES IN IT_BKPF1
                                   WHERE BUKRS = IT_BKPF1-BUKRS
                                                AND AUGDT = IT_BKPF1-BUDAT
                                                AND AUGBL = IT_BKPF1-BELNR
                                                AND BSCHL IN ('31' , '29', '26', '39', '25').
    I used Progress Indicator befor running this query and after this query also. But still It's giving me TIME-OUT error in this select query only.
      I run the same query for 10 records in IT_BKPF1 table, it runs perfectly. But when I run it for 1000 records it giving dump.
    And in actual bussiness my records are always more than 100 only.
    I also check the indexing. It having secondary indexing on this BUKRS, AUGDT, AUGBL fields. Then also it's giving error.
    so, How can I solve this dump..?? What could be the reason..??
    Thanks in advance...!!
    Regards,
    Poonam.

    Hi Poonam Patil,
    Try to provide BELNR and GJAHR in where condition...
    BKPF-DBBLG ==> BSAK-BELNR
    Also check
    BKPF-BLDAT ==> BSAK-AUGDT
    Check out above relation...
    If data is there in these fields of the table and both are matching then you can pass it and as they are in primary key of BSAK it will improve the performance...
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • Cube to Cube "Error in data Selection" plz help

    Hi this is Ajay Reddy
    when am sending data from Cube to Cube am getting an error
    "Error in data Selection" plz help

    Hi,
    It needs a Note implementaion. I got similar problem in version BIW 7 and SP 11. We got the solution with on of the note . I am not able to recollect the note number.
    Any way check the notes 920971,155471 may help you or not.
    With rgds,
    Anil Kumar Sharma .P

  • Error in data Selection

    Hi experts,
    I have added a field to 0emp_attr data source using DS enhancements, when trying to extract with full the job is getting failed stating  " error in data selection".

    Hi,
    Just see following thing
    1. Try to extract data in R/3 in RSA3 transaction.If it is working correctly no issue
    2. If RSA3 throw issue check the definition of your code and try to debug it.
    3. If RSA3 is fine check your Infopackage selection settings if it is ok or there is any error,If there is any selection try to remove it and load data.
    Thanks and regards

Maybe you are looking for