Time_out dump in crm_srv_report and crmd_order

Hi,
While executing the std tcodes crm_srv_report and crmd_order we are getting a short dump time_out which says Time limit exceeded.
we are using this tcodes to get a list or orders or a particular time period.
the dump in st22 suggest to increase the parameter value of "rdisp/max_wprun_time".
we have set this parameter to 600, still the error persists.
any suggestion what can be done to eliminate this error.
Regards,
PP

Hi Pepe,
In my opinion, the timeout parameter is fine. It does not make sense a user to wait more than 10 minutes for a report output, in a operational system.
Since this are standard reports, maybe I would try to explore the following options (maybe you already did some of them ):
- Try to search for OSS notes for performance issues with those reports (example: 1251210)
- If your time period is very short, maybe check SAP support opinion.
- Check it a BASIS colleague to trace and check if it is possible to create some indexes to particular SELECT's operations. Or to update statistics information of some tables to faster the access (t-code DB20)
- If you have many historical data, check if it possible to archive documents
- If you have a BW system, use it to do the analysis that you're trying to do in CRM system.
Don't know if it is enough, but hope that helps you a little more.
Kind regards,
Garcia

Similar Messages

  • Time_Out dumps occurred frequently with generic users

    Hello Experts,
    We are getting daily 10-15 Time_out dumps with SOLMAN_BTC and SM_EFWK users.
    Can you please some one provide suggestions on this to resolve the issue.
    Thanks in advance....
    Rgds,
    Venkat

    Hi Venkat,
    Pls refer below links for similar error,
    Report CL_SQL_RESULT_SET=============CP
    ABAP Keyword Documentation
    Runtime Errors : TIME_OUT (The program "CL_SQL_STATEMENT==============CP" has exceeded the maximum permitted runtime)
    Regards
    K.N

  • RSCOLL00 OS collector job is cancelled and getting TIME_OUT dump

    Hi...
    Am using ECC 5.0 , In our PRD system progaram name RSCOLL00 OS collector job and its getting TIME_OUT dump for the particular job.
    And i've seen that an error SQL error 3997 occuredin that job log.
    And this are the dump following search criteria
    "TIME_OUT" C
    "SAPLSALC" or "LSALCU16"
    "SALC_MT_READ"
    pls do the needful ASAP.
    thanks,
    Gopinath.

    Hi Gopinath,
    If your problem is still pending pls paste the complete dump message in this form so that we can give solution accordingly.
    If you problem has been solved then mentions here complete dump message and solution which is applied by you.
    Anil

  • Getting Time_OUT dump

    Hi ,
    i am getting time_out dump when i am innerjoining MAPL and PLPO tables.
        SELECT mapl matnr mapl werks mapl plnty mapl plnnr mapl plnal
          plpo plnkn plpo zaehl plpo vgw04
        FROM mapl INNER JOIN plpo ON
           mapl plnnr = plpo plnnr
        INTO TABLE ist_mapl
        FOR ALL ENTRIES IN main_ltb
        WHERE mapl matnr = main matnr
          AND mapl werks = mainltb werks
          AND vornr = '0010' .

    your problem is not related to the FAE, but to the join:
    INTO TABLE ist_mapl
    FROM         mapl AS a
    INNER JOIN plpo AS b
    ON  b~plnnr = a~plnnr
    FOR ALL ENTRIES IN main_ltb
    WHERE a~matnr  = main matnr
    AND      a~werks = mainltb werks
    AND      b~plnty =  ????
    AND vornr = '0010' .
    You need PLNTY? If you don't know it, then you can add
    as list of all possible values  
    PLNTY IN ( '...', '...' ... )
    it should help.
    Siegfried

  • SAPLBTCH  TIME_OUT Dump

    Hello Abap Guru,
    There is a Z report which runs in foreground and creates a job in SM37.The report is simple ALV display report. While the Z report executes successfully for all other user, We get the time_out dump only for a single user. I tried checking the SAP GUI that of the user getting dump with mine, its the same 720 final release path level 13. Also if it is related to authorization issue then the error should be of authorization error instead of time_out.
    Request your valuable inputs soon
    Regards,
    sap abap

    Hi Try minimising the conditions in where clause
         SELECT fields..... FROM CKIS
         WHERE KALNR = KEKO-KALNR AND
                      KADKY = KEKO-KADKY AND
                      TVERS = KEKO-TVERS AND
                      TYPPS = 'M'.
        after this, deleting unwanted records from internal table as per pending conditions...
    Regds,
    Anil

  • Is it possible for a background program to produce TIME_OUT Dump?

    Hello Experts,
    When i have analyzed the Dumps using Tcode ST22 in my production system, I found many dumps.
    My doubt is that, is it possible for a program scheduled to run in background to produce TIME_OUT dump?
    I faced a scenario like this. What could be done to avoid this?
    Can this be because of some settings problem? If so, what kind of settings has to be changed?
    Thanks and Best Regards,
    Suresh

    Hi,
    As far as time out for Background programs are concern I think there is no time out for programes executing in background
    First try to improve performance of your program like read with binary search , create table index etc.
    Then consult basis ppl in this regard they can set big time out slot so that your probram will not go into dump.
    Regards
    Bikas

  • How to dump deleted emails and sent emails. Thank You

    Greetings, When I delete my email it goes to trash and then I have to delete them again one at a time, isn't there a dump click available, and the same for sent emails that one does not keep. Thanks for this help.
    PS I am a new user, had outlook express on my last computer.

    trash and junk have a right click empty option. So it is not one at a time. Holding shift when you delete will bypass the trash folder, but there is no undo if you get it wrong when you accidentally delete the inbox instead of a single mail in it.

  • In 10g can we dump control file and get SCN info.

    Hi,
    I have a question can any one help me on this.
    In 9.2.0.5 we could dump the control file and get the SCN using the command :
    alter session set events 'immediate trace name CONTROLF level 10';
    In 10.1.0.4.0 the output of the dump has changed and we do not get the SCN. or any of the following information :
    DATABASE ENTRY
    CHECKPOINT PROGRESS RECORDS
    EXTENDED DATABASE ENTRY
    REDO THREAD RECORDS
    LOG FILE RECORDS
    DATA FILE RECORDS
    RMAN CONFIGURATION RECORDS
    LOG FILE HISTORY RECORDS
    OFFLINE RANGE RECORDS
    ARCHIVED LOG RECORDS
    BACKUP SET RECORDS
    BACKUP PIECE RECORDS
    BACKUP DATAFILE RECORDS
    Can I get similar output in 10g as 9i ?
    with regards,
    Dilip.

    Hi.
    What are you trying to achieve here? If you just want the current SCN, you can get it using one of these:
    SQL> select current_scn from v$database;
    CURRENT_SCN
    8058824527
    1 row selected.
    SQL>or
    SQL> select dbms_flashback.get_system_change_number from dual;
    GET_SYSTEM_CHANGE_NUMBER
                  8079317404
    1 row selected.
    SQL>Cheers
    Tim...

  • Hi! At connection to iTunes the section "other" constantly increases. What's the matter? How to avoid it? On phone music isn't necessary, video too isn't present. But another grows. How to correct it? I know only one method, it to dump all settings and a

    Hi! At connection to iTunes the section "other" constantly increases. What's the matter? How to avoid it? On phone music isn't necessary, video too isn't present. But another grows. How to correct it? I know only one method, it to dump all settings and a content.

    http://discussions.apple.com/docs/DOC-5142

  • Time_out dump in BackGround job

    Hi experts,
    I am facing an issue while scheduling a Background Job.The entire scenario is as follows.
    A RFC function module has been called  in the Report Program.The code inside the RFC function module is fetching a data from the database table(Select Query has been written).But in Production server system is giving the Time_out DUMP at this select Query which is written inside RFC function module.
    Table is having large number of records.For this Code optimization has been done already.
    Moreover entire report has been scheduled in Background.But I came to know RFC will work in Foreground only even though entire report program is scheduled in Background.
    Can anyone suggest how to solve this problem?
    For your information time limit has been maintained for Foreground job.

    Hi, Akhil, the rfc call is of course not run in foreground, but in dialog work process. Thats the same work process type, that performs requests of dialog users. Even though it does not sound much logically in first look, it has a logic. Also other limits for dialog users will apply.
    If you have to run the FM through RFC, there is no way how to bypass the dialog work process runtime limit on destination system, it will just apply, in my opinion I would recommend you don't loose your time to work around this point. afaik it does not matter if you start it synchronously or asynchronously.
    But as I wrote, you can try to throw a commit work in destination system occasionally, if you can (e.g. if you are not blocked in one big select query), you can also increase the runtime limit (but for all users on the same instance). You can redesign your application...
    If you will study the dump, you will find that it occurred on the destination (accounting) system, not in the calling system - where you are really ok since you run in background work process.
    Also, during the active RFC call you can monitor the destination system with SM66, where you will see this running process in DIA work process with the time increasing, before it will fail.
    On the other hand if you will start SM66 on caller system, you will see the work process is BTC

  • TIME_OUT dump on 'Transfering logs into Control system'

    Hi all,
    When I double click one of my packages the message 'Transfering logs into Control system' is displayed in the status bar and after x minutes the systems dumps with an TIME_OUT error on CNV_MBT_STATE_REFRESH.
    Any suggestions?
    Thanks, Erik

    This can be caused by missing table buffer updates , you may trying executing  /$tab in the system .

  • SAPMSSY1  TIME_OUT dump

    Category               ABAP Programming Error
    Runtime Errors         TIME_OUT
    ABAP Program           SAPMSSY1
    Application Component  BC-MID-RFC
    Date and Time          03.05.2014 09:04:14
    |Short text                                                                                        |
    |    Time limit exceeded.                                                                          |
    |What happened?                                                                                    |
    |    The program "SAPMSSY1" has exceeded the maximum permitted runtime without                     |
    |    interruption and has therefore been terminated.                                               |
    |                                                                                                  |
    |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                                                                                    |
    |    After a specific time, the program is terminated to make the work area                        |
    |    available to other users who may be waiting.                                                  |
    |    This is to prevent a work area being blocked unnecessarily long by, for                       |
    |    example:                                                                                      |
    |    - Endless loops (DO, WHILE, ...),                                                             |
    |    - Database accesses with a large result set                                                   |
    |    - Database accesses without a suitable index (full table scan)                                |
    |                                                                                                  |
    |    The maximum runtime of a program is limited by the system profile                             |
    |    parameter "rdisp/max_wprun_time". The current setting is 600 seconds. If this                 |
    |     time limit is                                                                                |
    |    exceeded, the system attempts to cancel any running SQL statement or                          |
    |    signals the ABAP processor to stop the running program. Then the system                       |
    |    waits another 60 seconds maximum. If the program is then still active,                        |
    |    the work process is restarted.                                                                |
    |How to correct the error                                                                          |
    |    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" " "                                                                                |
    |    "SAPMSSY1" or "SAPMSSY1"                                                                      |
    |    "REMOTE_FUNCTION_CALL"                                                                        |
    |                                                                                                  |
    |    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.                                                           |
    |                                                                                                  |

    Hi Bacon
    Can you please check the user / transaction details which caused this error ?  You will get that information in the dump itself.
    Secondly is the dump occurring repeatedly.
    From the dump details you have provided , it looks like there has been a RFC call in dialog mode which has exceeded runtime.
    To resolve as a one time issue - also you have the possibility to increase the maximum run time parameter temporarily in the system
    Thanks
    Rishi

  • SMQ2 Inbound Queue TIME_OUT dump

    Hi all,
    When we try to run SMQ2 transaction, it is resulting in TIME_OUT error. Hence nor we are able to view the entries, neither we can delete them. We also dont know from where the entries are being received. All the RFC connections are working fine. We are sure that there are large number of entries being CFIed. Please provide us a solution on how to resolve this dump. Is there any thing that should be done with LUWs?
    Thanks in Advance,
    Varun

    23.09.2011     11:01:58     010     C     TIME_OUT               SAPLIRFC     2
    What happened?
    The program "RSTRFCM3" has exceeded the maximum permitted runtime without
    interruption, and has therefore been terminated.
    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.
    Error analysis
    After a certain length of time, the program is terminated. In the case
    of a work area, this means that
    - endless loops (DO, WHILE, ...),
    - database accesses producing an excessively large result set,
    - database accesses without a suitable index (full table scan)
    do not block the processing for too long.
    The system profile "rdisp/max_wprun_time" contains the maximum runtime of a
    program. The
    current setting is 1800 seconds. Once this time limit has been exceeded,
    the system tries to terminate any SQL statements that are currently
    being executed and tells the ABAP processor to terminate the current
    program. Then it waits for a maximum of 60 seconds. If the program is
    still active, the work process is restarted.
    successfully processed, the system gives it another 1800 seconds.
    Hence the maximum runtime of a program is at least twice the value of
    the system profile parameter "rdisp/max_wprun_time".
    How to correct the error
    You should usually execute long-running programs as batch jobs.
    If this is not possible, 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 an unsuitable index: Check index generation.
    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:
    "TIME_OUT" C
    "RSTRFCM3" or "RSTRFCM3"
    "SHOW_FILE_VIEW"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    We are getting the error only for this transaction.
    We are facing this issue from Friday.
    We are not able to retrieve the queue list. Instead after 1800 seconds, the transaction is resulting in TIME_OUT error.
    Edited by: Nuravc on Sep 26, 2011 7:42 AM
    Edited by: Nuravc on Sep 26, 2011 8:16 AM

  • Ipod dumps entire content and must be restored and synced each time.

    Second Generation iPod Nano. iTunes on Dell XPS410, Windows Vista.
    Battery depleted. Plugged Nano into computer. Got a "may be corrupted screen; try restoring"♦Computer recognizes Nano; I restore and screen confirms successful restoration and tells me to sync. Sync takes place and completes successfully however my Library for the Nano device shows in "graytone" and cannot be accessed. I eject the Nano; unplug it from the computer and it works fine. Once I again plug it into the computer, everything dumps out of the Nano and I have to start the Restore/Sync process all over again. Each time the Nano is unplugged and replugged to the computer iTunes it dumps its entire content!
    Would most appreciate any suggestions!

    I have tried connecting the ipod via the front and back USb 2.0 jacks on my desktop. I have only one external drive connected to the computer. Doesn't matter whether I remove it or not, the same problem occurs. I do not have a network. My drive letter for the ipod is letter z so it is not disk recognition which is a problem. 1/3 of my music comes from I-tunes, the rest I rip from my Cd's (like Linkin Park, Slipknot, Dir en grey). I only used about 650 MB worth of the ipods 30 gig drive capacity. Doesn't matter which version of the itunes software I use, it gives me the same problem. The recovery loop occured after just after 2 weeks of purchasing it from the apple storeand I took it back with only 12 songs in it. The restored it and 10 days later, the same problem occured. Recently, the ipod has been entering the recovery mode much more frequently prompting me to believe the hard drive is malfunctioning.
    I have scanned my computer and the Ipod with everything from Norton, AVG, McCafee, and trendmicro and found no viruses, bugs, worms, etc.
    Any suggestions to help me resolve this issue would be greatly appreciated.
    Thanks,
    Ice

  • I am ready to dump mountain lion and go back to snow leopard

    Can someone stop me? I am so frustrated with lion and now mountain lion that I am actually looking at dumping the OS X 10.8 and reverting back to snow leopard.
    I have a small office with three mac machines. I have been a fan of the macs for many years, even though we have software for enigineering that requires a windows versions. I have several issues that will not go away on each machine. I have a table below that describes a few of the problems. These problems have left me and my staff with no trust that our work is safe (yes, we do backups and TM). Our work flow is no longer fluid or fun with mountain lion.
    Machine
    OS X issues
    Macbook 2009 5,0 running 10.7.3
    Graphics problems, extremely slow performance opening and closing files.
    Macbook Pro mid 2009, 5,1 now testing 10.8.3 beta
    Graphics problems, dropped WIFI, time machine corruption, very slow finder performance, CUDA performance issues, loads of lsboxd issues, spotlite runs indexing alot, Sync services still broken in mountain lion. Cannot keep the Adobe licensing for Creative Suite 4 activated. Fresh install of 10.8.2
    Macbook Pro Late 2011, running 10.8.2
    Graphics problems, flash problems, kernel panics after sleep, Kernel panics with VM Ware fusion 5.0.2, Memory relase issues after software quits, Very slow finder performance, Safari causes kernel panics. Any panic causes multiple versions of Office for mac 2011 autosaved files from one original file., spotlite indexing issues. Sync services still broken in mountain lion. Fresh install of 10.8.2
    I am normally a good troubleshooter and have resolved many issues so far. But they just cntiue and I am spending a lot of time resolving problems with the machine's OS that I could be using for productivity. I guess I feel like the old days as an engineer in an office where windows requires a near constant windows administrator.
    Is this just me whining? Is anyone else suffering through the OS X 10.7 and 10.8 issues?
    Somebady tell me I am crazy... I just want to get back to work.

    Some troubleshooting information.
    Isolating Issues
    Isolating an issue by using another user account
    Isolating issues in Mac OS X
    Safe Mode
    Safe Mode - About
    Basic Maintenance:
    Disk Utility
    Disk Utility Repair Permissions You Can Safely Ignore
    Reset NVRAM/PRAM
    Reset SMC
    General Maintenance Recommendations
    Safari Problems

Maybe you are looking for

  • ITunes will not download no matter what.

    Recently, an error message on my computer popped up saying something about the registry and that I would need to reinstall iTunes. Fair enough. Not a bother. I uninstall iTunes and then go to download it from the site. I go to click on the installer

  • If you move files to external disk in PSE 7, are those files backed up when you Backup Catalog

    My catalog is now about 50 GB and I want to decrease its size so that it takes less space on my hard disk and, more importantly, so my backups and restores don't take so long.    These are files that will not be edited in the future so why keep backi

  • Really want to make the switch but................

    I bought a mac mini and a Macbook Pro to evaluate the possibility of moving my very pricy M$ AD structure to MAC OS X. MAC OS X seems to have everything from a collaboration perspective with one exception. I have a two part question: 1) Does OS X Ser

  • Outgoing ssh goes to my own computer

    I tried out a program called AlmostVPN and it didn't work out for me. I uninstalled it and now whenever I try to make an ssh connection to a remote computer I log in to my own computer. I think the output of ifconfig should show if out going port 22

  • Light Indicator based on condition.

    Hello Experts, I am displaying some data in a table. Now i want some light indicator on row level based on a  value of a perticular row. I tried it by creating a attribute of string type and bind it to the UI element of the table of Image type. Now i