Performance issue in Report (getting time out error)

Hi experts,
I am doing Performance for a Report (getting time out error)
Please see the code below and .
while looping internal table IVBAP after 25 minutes its showing  time out error at this poit ->
SELECT MAX( ERDAT ) .
please send alternate code for this .
Advance thanks
from
Nagendra
Get Sales Order Details
CLEAR IVBAP.
REFRESH IVBAP.
SELECT VBELN POSNR MATNR NETWR KWMENG WERKS FROM VBAP
   INTO CORRESPONDING FIELDS OF TABLE IVBAP
     FOR ALL ENTRIES IN IVBAK
       WHERE VBELN =  IVBAK-VBELN
       AND   MATNR IN Z_MATNR
       AND   WERKS IN Z_WERKS
       AND   ABGRU = ' '.
Check for Obsolete Materials - Get Product Hierarhy/Mat'l Description
  SORT IVBAP BY MATNR WERKS.
  CLEAR: WK_MATNR, WK_WERKS, WK_PRDHA, WK_MAKTX,
         WK_BLOCK, WK_MMSTA, WK_MSTAE.
  LOOP AT IVBAP.
      CLEAR WK_INVDATE.                                   "I6677.sn
      SELECT MAX( ERDAT ) FROM VBRP INTO WK_INVDATE WHERE
      AUBEL EQ IVBAP-VBELN AND
      AUPOS EQ IVBAP-POSNR.
      IF SY-SUBRC = 0.
          MOVE WK_INVDATE TO IVBAP-INVDT.
          MODIFY IVBAP.
      ENDIF.                                               "I6677.e n
      SELECT SINGLE * FROM MBEW WHERE             "I6759.sn
      MATNR EQ IVBAP-MATNR AND
      BWKEY EQ IVBAP-WERKS AND
      BWTAR EQ SPACE.
      IF SY-SUBRC = 0.
         MOVE MBEW-STPRS TO IVBAP-STPRS.
         IVBAP-TOT = MBEW-STPRS * IVBAP-KWMENG.
         MODIFY IVBAP.
      ENDIF.                                      "I6759.en
    IF IVBAP-MATNR NE WK_MATNR OR IVBAP-WERKS NE WK_WERKS.
      CLEAR: WK_BLOCK, WK_MMSTA, WK_MSTAE, WK_PRDHA, WK_MAKTX.
      MOVE IVBAP-MATNR TO WK_MATNR.
      MOVE IVBAP-WERKS TO WK_WERKS.
      SELECT SINGLE MMSTA FROM MARC INTO MARC-MMSTA
        WHERE MATNR = WK_MATNR
        AND   WERKS = WK_WERKS.
      IF NOT MARC-MMSTA IS INITIAL.
        MOVE '*' TO WK_MMSTA.
      ENDIF.
      SELECT SINGLE LVORM PRDHA MSTAE MSTAV FROM MARA
        INTO (MARA-LVORM, MARA-PRDHA, MARA-MSTAE, MARA-MSTAV)
        WHERE MATNR = WK_MATNR.
      IF ( NOT MARA-MSTAE IS INITIAL ) OR
         ( NOT MARA-MSTAV IS INITIAL ) OR
         ( NOT MARA-LVORM IS INITIAL ).
         MOVE '*' TO WK_MSTAE.
      ENDIF.
      MOVE MARA-PRDHA TO WK_PRDHA.
      SELECT SINGLE MAKTX FROM MAKT INTO WK_MAKTX
        WHERE MATNR = WK_MATNR
          AND SPRAS = SY-LANGU.
    ENDIF.
    IF Z_BLOCK EQ 'B'.
      IF WK_MMSTA EQ ' ' AND WK_MSTAE EQ ' '.
        DELETE IVBAP.
        CONTINUE.
      ENDIF.
    ELSEIF Z_BLOCK EQ 'U'.
      IF WK_MMSTA EQ '' OR WK_MSTAE EQ ''.
        DELETE IVBAP.
        CONTINUE.
      ENDIF.
    ELSE.
      IF WK_MMSTA EQ '' OR WK_MSTAE EQ ''.
        MOVE '*' TO WK_BLOCK.
      ENDIF.
    ENDIF.
    IF WK_PRDHA IN Z_PRDHA.                                    "I4792
      MOVE WK_BLOCK TO IVBAP-BLOCK.
      MOVE WK_PRDHA TO IVBAP-PRDHA.
      MOVE WK_MAKTX TO IVBAP-MAKTX.
      MODIFY IVBAP.
    ELSE.                                                     "I4792
      DELETE IVBAP.                                           "I4792
    ENDIF.                                                    "I4792
    IF NOT Z_ALNUM[] IS INITIAL.                              "I9076
      SELECT SINGLE * FROM MAEX                               "I9076
        WHERE MATNR = IVBAP-MATNR                             "I9076
          AND ALNUM IN Z_ALNUM.                               "I9076
      IF SY-SUBRC <> 0.                                       "I9076
        DELETE IVBAP.                                         "I9076
      ENDIF.                                                  "I9076
    ENDIF.                                                    "I9076
  ENDLOOP.

Hi Nagendra!
Get Sales Order Details
CLEAR IVBAP.
REFRESH IVBAP.
check ivbak is not initial
SELECT VBELN POSNR MATNR NETWR KWMENG WERKS FROM VBAP
INTO CORRESPONDING FIELDS OF TABLE IVBAP
FOR ALL ENTRIES IN IVBAK
WHERE VBELN = IVBAK-VBELN
AND MATNR IN Z_MATNR
AND WERKS IN Z_WERKS
AND ABGRU = ' '.
Check for Obsolete Materials - Get Product Hierarhy/Mat'l Description
SORT IVBAP BY MATNR WERKS.
CLEAR: WK_MATNR, WK_WERKS, WK_PRDHA, WK_MAKTX,
WK_BLOCK, WK_MMSTA, WK_MSTAE.
avoid select widin loop. instead do selection outside loop.u can use read statement......and then loop if required.
LOOP AT IVBAP.
CLEAR WK_INVDATE. "I6677.sn
SELECT MAX( ERDAT ) FROM VBRP INTO WK_INVDATE WHERE
AUBEL EQ IVBAP-VBELN AND
AUPOS EQ IVBAP-POSNR.
IF SY-SUBRC = 0.
MOVE WK_INVDATE TO IVBAP-INVDT.
MODIFY IVBAP.
ENDIF. "I6677.e n
SELECT SINGLE * FROM MBEW WHERE "I6759.sn
MATNR EQ IVBAP-MATNR AND
BWKEY EQ IVBAP-WERKS AND
BWTAR EQ SPACE.
IF SY-SUBRC = 0.
MOVE MBEW-STPRS TO IVBAP-STPRS.
IVBAP-TOT = MBEW-STPRS * IVBAP-KWMENG.
MODIFY IVBAP.
ENDIF. "I6759.en
IF IVBAP-MATNR NE WK_MATNR OR IVBAP-WERKS NE WK_WERKS.
CLEAR: WK_BLOCK, WK_MMSTA, WK_MSTAE, WK_PRDHA, WK_MAKTX.
MOVE IVBAP-MATNR TO WK_MATNR.
MOVE IVBAP-WERKS TO WK_WERKS.
SELECT SINGLE MMSTA FROM MARC INTO MARC-MMSTA
WHERE MATNR = WK_MATNR
AND WERKS = WK_WERKS.
IF NOT MARC-MMSTA IS INITIAL.
MOVE '*' TO WK_MMSTA.
ENDIF.
SELECT SINGLE LVORM PRDHA MSTAE MSTAV FROM MARA
INTO (MARA-LVORM, MARA-PRDHA, MARA-MSTAE, MARA-MSTAV)
WHERE MATNR = WK_MATNR.
IF ( NOT MARA-MSTAE IS INITIAL ) OR
( NOT MARA-MSTAV IS INITIAL ) OR
( NOT MARA-LVORM IS INITIAL ).
MOVE '*' TO WK_MSTAE.
ENDIF.
MOVE MARA-PRDHA TO WK_PRDHA.
SELECT SINGLE MAKTX FROM MAKT INTO WK_MAKTX
WHERE MATNR = WK_MATNR
AND SPRAS = SY-LANGU.
ENDIF.
IF Z_BLOCK EQ 'B'.
IF WK_MMSTA EQ ' ' AND WK_MSTAE EQ ' '.
DELETE IVBAP.
CONTINUE.
ENDIF.
ELSEIF Z_BLOCK EQ 'U'.
IF WK_MMSTA EQ '' OR WK_MSTAE EQ ''.
DELETE IVBAP.
CONTINUE.
ENDIF.
ELSE.
IF WK_MMSTA EQ '' OR WK_MSTAE EQ ''.
MOVE '*' TO WK_BLOCK.
ENDIF.
ENDIF.
IF WK_PRDHA IN Z_PRDHA. "I4792
MOVE WK_BLOCK TO IVBAP-BLOCK.
MOVE WK_PRDHA TO IVBAP-PRDHA.
MOVE WK_MAKTX TO IVBAP-MAKTX.
MODIFY IVBAP.
ELSE. "I4792
DELETE IVBAP. "I4792
ENDIF. "I4792
IF NOT Z_ALNUM[] IS INITIAL. "I9076
SELECT SINGLE * FROM MAEX "I9076
WHERE MATNR = IVBAP-MATNR "I9076
AND ALNUM IN Z_ALNUM. "I9076
IF SY-SUBRC 0. "I9076
DELETE IVBAP. "I9076
ENDIF. "I9076
ENDIF. "I9076
endloop.
U have used many select queries widin loop-endloop which is a big hindrance as far as performance is concerned.Avoid such practice.
Thanks
Deepika

Similar Messages

  • Getting time out error when running the assigned verification in DRM 9.3.2.

    Hi,
    I have installed DRM 9.3.2.0.0 in my system (windows 7), when i am trying to run assigned verifications i am getting the time out error within a minute.
    As suggested by oracle,I have added DWORD with value 480000 under Master Data Management in Registry editor. But still getting the error.
    Please suggest a solution for this issue.
    regards,
    sathiya

    Please suggest me the solution.
    regards,
    sathiya

  • Getting Time-Out Error in Sync-Async Bridge

    Hi All,
    My IP has a Sync-Async Bridge. I have a fork, two senders, two switchs and a transformation step inside the bridge.
    If XI takes much time to process the IP, the send step that closes sync-async bridge is not waiting for the message after a particular period and throws time out error to the sender.
    Is it possible to increase the waiting time for sync-async bridge?
    This IP works correctly 8 out of 10 times. Sometimes the message is sitting permenantly in the queue(smq2) and gives me system failure error.
    Can u tell me why this problem happening?
    Thanks & Regards,
    Senthil.

    Dear Michal/Senthil,
    Can you pl clear a confusion that i have had for ages...
    suppose there is a sync/async bridge ( i understand that it is used for sync business system too async BS communcation )
    where we have 4 steps
    sync receive - > async send -> async receive -> sync send..
    i do understand that async send and async receive are combined through correlation
    but i do not understand how do they work..
    i mean when async send say send a file to a target system...does async receive reads a file from the same folder based on the corelation or wat...
    basically can you pls explain me how do the steps 2 and 3 above work
    Edited by: Tarang Shah on Mar 3, 2009 12:51 PM

  • Queue getting time out error

    Hello ,
    We have a problem with q's getting error time out.
    Oue Scenerio is SAP AR - PI--SAP FCSM
    The messages are reaching PI. However when PI sends the message back to SAP, the queues were set to run as dialog (D/A) mode, hence the messages were timing out after the dialog process time limit was reached. So we changed the PI queues to run in background. After that the job completes in 0 seconds and nothing gets transferred through PI to FSCM.
    Can anyone help me in this problem or provide some pointers how to solve this.
    Regards,
    Vikrant

    are you able to see the successful status in PI (message monitor/CC monitor)...
    there must be some exception fired ,you put a break point in the receiver prog. at start and check where is the problem.
    give details for further assitance

  • I keep getting time out error messages when trying to install flash player

    I've put a new install of Win 7 64 bit pro onto a new hdd.  All other s/w has worked fine and not given me any issues except for adobe flash player.  If I just install FP 11 it installs ok.  Issue happens when I try to install the "other" version for Steam.  The install screen stops at 11%, shoots up to 47%, then I get a timeout error message.  If I uninstall and install the Steam version 1st it works then the regular version gets the same timeout error.  I have folllowed all advice from previous threads on this topic such as disabling firewall (I use Panda), a clean adobe install using the flash player uninstall program and removing reader as well then going through the registry and removing all mention of adobe, etc, etc.
    I found a partial way around this.  I installed the Steam version of flash player, then found a website that I could download flash player 10 executable from.  I was able to run that and get both versions of flash player going on my system.  Then the flash player went and found the update to version 11.  I've just tried to install that and I end up with the exact same error messages all over again.
    Is there website that I can download the executable file for flash player 11 from or a link to it on the adobe website?

    I am not sure what you mean by "Flash Player for steam"; the only Flash Player installers I know is the ActiveX (for Internet Explorer) and the plugin (for other browsers); you can find both at http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_header
    [topic moved to Flash Player forum]

  • HI performance issue.. getting time out error

    hi all.
    in below code..commented is my original one n i changed it to up to 1 rows.
    so is it rite this coding..?
    TABLES: DD03L.
    DATA: BEGIN OF WDD03M,
              FIELDNAME LIKE DD03M-FIELDNAME,
              TABNAME LIKE DD03M-TABNAME,
              CHECKTABLE LIKE DD03M-CHECKTABLE,
              ROLLNAME LIKE DD03M-ROLLNAME,
              ENTITYTAB LIKE DD03M-ENTITYTAB,
              DOMNAME LIKE DD03M-DOMNAME,
              DDTEXT LIKE DD03M-DDTEXT,
            END OF WDD03M.
      DATA: FLD LIKE TOBJ-FIEL1.
    SELECT SINGLE FIELDNAME                               
                          TABNAME
                          CHECKTABLE
                          ROLLNAME
                          ENTITYTAB
                          DOMNAME
                          DDTEXT
                     INTO (WDD03M-FIELDNAME
                          ,WDD03M-TABNAME
                          ,WDD03M-CHECKTABLE
                          ,WDD03M-ROLLNAME
                          ,WDD03M-ENTITYTAB
                          ,WDD03M-DOMNAME
                          ,WDD03M-DDTEXT
                     FROM DD03M
                    WHERE TABNAME  LIKE 'AUTH%'
                      AND DDLANGUAGE = SY-LANGU
                      AND FIELDNAME  = FLD
                      AND FLDSTAT    = 'A'
                      AND ROLLSTAT   = 'A'
                      AND DOMSTAT    = 'A'
                      AND TEXTSTAT   = 'A'.
    data: AUTH(30) type c .
    concatenate '%' AUTH '%' into AUTH.
                    SELECT FIELDNAME                               
                           TABNAME
                           CHECKTABLE
                           ROLLNAME
                           ENTITYTAB
                           DOMNAME
                           DDTEXT
                      INTO corresponding fields of WDD03M
                      FROM DD03M
                     WHERE TABNAME  LIKE AUTH
                       AND DDLANGUAGE = SY-LANGU
                       AND FIELDNAME  = FLD
                       AND FLDSTAT    = 'A'
                       AND ROLLSTAT   = 'A'
                       AND DOMSTAT    = 'A'
                       AND TEXTSTAT   = 'A'.
    endselect.
    if sy-subrc <> 0 .
    write:/ ' not ret'.
    else.
    write: wdd03m.
    endif.

    HI,
    Check now, its not taking long time now.
    TABLES: dd03l.
    DATA: BEGIN OF wdd03m occurs 0,
    fieldname LIKE dd03m-fieldname,
    tabname LIKE dd03m-tabname,
    checktable LIKE dd03m-checktable,
    rollname LIKE dd03m-rollname,
    entitytab LIKE dd03m-entitytab,
    domname LIKE dd03m-domname,
    ddtext LIKE dd03m-ddtext,
    END OF wdd03m.
    DATA: fld LIKE tobj-fiel1.
    SELECT SINGLE FIELDNAME
    TABNAME
    CHECKTABLE
    ROLLNAME
    ENTITYTAB
    DOMNAME
    DDTEXT
    INTO (WDD03M-FIELDNAME
    ,WDD03M-TABNAME
    ,WDD03M-CHECKTABLE
    ,WDD03M-ROLLNAME
    ,WDD03M-ENTITYTAB
    ,WDD03M-DOMNAME
    ,WDD03M-DDTEXT
    FROM DD03M
    WHERE TABNAME LIKE 'AUTH%'
    AND DDLANGUAGE = SY-LANGU
    AND FIELDNAME = FLD
    AND FLDSTAT = 'A'
    AND ROLLSTAT = 'A'
    AND DOMSTAT = 'A'
    AND TEXTSTAT = 'A'.
    DATA: auth(30) TYPE c .
    CONCATENATE '%' auth '%' INTO auth.
    SELECT <b>SINGLE</b> fieldname
    tabname
    checktable
    rollname
    entitytab
    domname
    ddtext
    INTO CORRESPONDING FIELDS OF wdd03m
    FROM dd03m
    WHERE
    ddlanguage = sy-langu
    AND fieldname = fld
    AND fldstat = 'A'
    AND rollstat = 'A'
    AND domstat = 'A'
    AND textstat = 'A'
    <b>AND tabname LIKE auth.</b>
    IF sy-subrc <> 0 .
      WRITE:/ ' not ret'.
    ELSE.
      WRITE: wdd03m.
    ENDIF.
    <b>OR</b>
    TABLES: dd03l.
    DATA: BEGIN OF wdd03m occurs 0,
    fieldname LIKE dd03m-fieldname,
    tabname LIKE dd03m-tabname,
    checktable LIKE dd03m-checktable,
    rollname LIKE dd03m-rollname,
    entitytab LIKE dd03m-entitytab,
    domname LIKE dd03m-domname,
    ddtext LIKE dd03m-ddtext,
    END OF wdd03m.
    DATA: fld LIKE tobj-fiel1.
    SELECT SINGLE FIELDNAME
    TABNAME
    CHECKTABLE
    ROLLNAME
    ENTITYTAB
    DOMNAME
    DDTEXT
    INTO (WDD03M-FIELDNAME
    ,WDD03M-TABNAME
    ,WDD03M-CHECKTABLE
    ,WDD03M-ROLLNAME
    ,WDD03M-ENTITYTAB
    ,WDD03M-DOMNAME
    ,WDD03M-DDTEXT
    FROM DD03M
    WHERE TABNAME LIKE 'AUTH%'
    AND DDLANGUAGE = SY-LANGU
    AND FIELDNAME = FLD
    AND FLDSTAT = 'A'
    AND ROLLSTAT = 'A'
    AND DOMSTAT = 'A'
    AND TEXTSTAT = 'A'.
    DATA: auth(30) TYPE c .
    CONCATENATE '%' auth '%' INTO auth.
    SELECT fieldname
    tabname
    checktable
    rollname
    entitytab
    domname
    ddtext
    INTO CORRESPONDING FIELDS OF table wdd03m UP TO 100 ROWS
    FROM dd03m
    WHERE
    ddlanguage = sy-langu
    AND fieldname = fld
    AND fldstat = 'A'
    AND rollstat = 'A'
    AND domstat = 'A'
    AND textstat = 'A'
    AND tabname LIKE auth.
    IF sy-subrc <> 0 .
      WRITE:/ ' not ret'.
    ELSE.
      WRITE: wdd03m.
    ENDIF.
    Regards,
    Sesh

  • Report getting time out

    Hi All,
    We are experiencing a very weird issue with a report.
    Report is getting refreshed correctly in first run but giving timeout error when refreshed 2nd time(Report parameters were not changed).
    This error is replicating only during some part of day and it seems there is issue with web intelligence memory as during peak load time report is failing.
    Please let me know if there is any way by which webi memory can be monitored or let me know if my assumption is incorrect and there can be any other issue due to which the above mentioned timeout issue is happening.
    Regards,
    Honed Ali

    What version and patch level are you on ?
    What type of environment is this and how many webi report servers do you have ?
    Does the issue only comes during peak hours ?
    What qualifies those times as peak ?
    What is the exact error message ?

  • Getting Time out Error in ZReports..

    Hi,
    I am getting timeout error whenever I am trying to run a report. This error is coming only in case of ZReports. These programs are of different modules, like SD, FI and HR. Standard reports and programs are running fine.
    Any solution ???
    Priyanka.
    SAP ABAP.

    Moderator message - Welcome to SCN.
    But
    Please see Please Read before Posting in the Performance and Tuning Forum before posting. You need to do some analysis first and then as a specific question - post locked
    Rob

  • Report TNS time out errors in EM

    TNS 12535 timeouts. they appear in the alert log. Is there a way to get them captured in the EM/Grid control?
    oel
    11.2.0.2
    em11

    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

  • T-Code OLI1BW for Material Movements- getting time out error

    Experts
             please help me to solve this problem...

    hi,
    whenever you try to load setup tables start the job as background jobs and do not schedule it directly.
    the direct job has a time limit defined by the system administrators which would cancel the job if the time limit exceeds the max permissible limit.
    The time limit for background job is more so please schedule it as background job.
    it will get complete.
    regards,
    Arvind

  • Under sql server job agent, view job history gets time out error message. How to fix?

    Thanks

    It looks like you have many data in JOB VIEW history. You may PURGE the jobhistory.
    You can keep the history info for last few months and purge the old data using 
    sp_purge_jobhistory Ref: http://technet.microsoft.com/en-us/library/ms175044.aspx

  • Performance issue TIME OUT Error

    Hello Friends,
    I am fetching data from BSAD table and getting TIME OUT error.
    Program was developed in ECC5.0. In 4.6 there is a function module called ARCH_ANA_PROGRESS_INDICATOR to solve this type of error but it is not there in my ECC5.0. 
    Is there any alternate function module to solve my problem in ECC5.0 or what is the alternate fuinction module for ARCH_ANA_PROGRESS_INDICATOR  in ECC5.0.
    Please guide me how to solve my error.

    Hi Kumar,
    u can use pacage size keyword in select statement.
    select * package size 10000
      from bsad
      into table i_bsad
    where -
    Regards
    Kiran

  • Report - Time out Error when Joining EKPO & MSEG

    Hi All,
    This is my code:
    SELECT    EKKO~EBELN
                EKKO~LIFNR
                EKKO~BUKRS
                EKKO~EKORG
                EKPO~EBELP
                EKPO~TXZ01
                EKPO~MATNR
                EKPO~MENGE
                EKPO~MEINS
                EKPO~UNTTO
                EKPO~PSTYP
             FROM EKKO
            INNER JOIN EKPO ON
            EKKOEBELN = EKPOEBELN
            INTO TABLE T_EKPO
            UP TO P_MAX ROWS
            WHERE  EKKO~EBELN IN S_EBELN
            AND EKKO~BSART IN S_BSART
            AND EKKO~LIFNR IN S_LIFNR
            AND EKKO~EKORG IN S_EKORG
            AND EKKO~EKGRP IN S_EKGRP
            AND EKKO~BEDAT IN S_BEDAT
            AND EKPO~MATNR IN S_MATNR
            AND EKPO~WERKS IN S_WERKS
            AND EKPO~MATKL IN S_MATKL
            AND EKPO~PSTYP IN R_PSTYP
            AND EKPO~KNTTP IN S_KNTTP.
       SELECT MBLNR
               ZEILE
               ERFMG
               EBELN
               EBELP
               FROM MSEG
               INTO TABLE T_MSEG
               FOR ALL ENTRIES IN T_EKPO
               WHERE EBELN = T_EKPO-EBELN
               AND EBELP = T_EKPO-EBELP.
    Now i am getting time out error. Can Any one suggest how can i solve this issue.

    Identical problem by different (?) user:
    Joining tables EKPO & MSEG

  • TIME out error in MIRO

    Hi Guys,
    My FICO is running MIRO but is getting time out error.
    The total no of line items in the PO are 2900.
    He runs MIRO with set of 400 Line items everytime.I have increased the runtime for the WP but sometimes still it gives timeout.
    I have checked the note no 1333601 but its for india specfic version & i m in UAE.
    Is there a way to schedule this background.
    thanks

    Hi,
    Thanks for the reply.
    I have already asked them to reduce the line items to 200.
    In SM50 there is no such information available. only the report name is available doesnt provide any information on the table that is being accessed.. I checked in SM66 also.
    Since the data is availalble in PRD only so this occurs in this env only.
    Could we  schedule this MIRO process in background..?

  • Time Out ERROR CC Risk Analysis RFC

    Hi Friends,
    I am getting time out error when I am testing the CC risk analysis RFC. One thiing I monitor here is that when I am changing the parameters to 'YES' in tcode '/virsa/zrtcnfg',this RFC time out is occuring,when I am changing it back to 'NO' it is working fine.
    I beleive there is some system perfomance issue or any bottleneck is happenning.
    Please check error details of the Rfc below
    Logon     Connection Error
    Error Details     Error when opening an RFC connection
    Error Details     ERROR: program GRCRTTOCC5X not registered
    Error Details     LOCATION: SAP-Gateway on host hostname / sapgw00
    Error Details     DETAIL: TP GRCRTTOCC5X not registered
    Error Details     COMPONENT: SAP-Gateway
    Error Details     COUNTER: 65055
    Error Details     MODULE: gwr3cpic.c
    Error Details     LINE: 1960
    Error Details     RETURN CODE: 679
    Error Details     SUBRC: 0
    Error Details     RELEASE: 700
    Error Details     TIME: Thu Mar 11 09:21:35 2010
    Error Details     VERSION: 2
    and also some time I am getting below error
    Logon     Connection Error
    Error Details     Error when opening an RFC connection
    Error Details     ERROR: timeout during allocate of registered program
    Error Details     LOCATION: SAP-Gateway on host hostname / sapgw00
    Error Details     DETAIL: TP GRCRTTOCC5X init/busy for more than 60 sec
    Error Details     COMPONENT: SAP-Gateway
    Error Details     COUNTER: 65068
    Error Details     MODULE: gwr3cpic.c
    Error Details     LINE: 1937
    Error Details     RETURN CODE: 677
    Error Details     SUBRC: 0
    Error Details     RELEASE: 700
    Error Details     TIME: Thu Mar 11 09:29:56 2010
    Error Details     VERSION: 2
    Any suggestion please..
    Thanks & Regards,
    Satyabrat
    Edited by: Satyabrat Mohanty on Mar 11, 2010 11:54 AM
    Edited by: Satyabrat Mohanty on Mar 11, 2010 12:00 PM

    Hi,
    for further information  the latest log is
    2010-04-28 07:01:47,706 [SAPEngine_Application_Thread[impl:3]_18] ERROR  User :   not found to get full name
    2010-04-28 07:02:21,066 [SAPEngine_Application_Thread[impl:3]_11] ERROR
    java.lang.Throwable: java.lang.NullPointerException
         at com.virsa.re.workflow.client.WorkflowRequestClient.getRoleProcessContextDtos(WorkflowRequestClient.java:284)
         at com.virsa.re.workflow.client.WorkflowRequestClient.execSubmitRoleApprovalWF(WorkflowRequestClient.java:83)
         at com.virsa.re.workflow.actions.WorkflowRequestAction.submitApprovalRequest(WorkflowRequestAction.java:95)
         at com.virsa.re.workflow.actions.WorkflowRequestAction.execute(WorkflowRequestAction.java:54)
         at com.virsa.framework.NavigationEngine.execute(NavigationEngine.java:273)
         at com.virsa.framework.servlet.VFrameworkServlet.service(VFrameworkServlet.java:230)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)
         at com.virsa.comp.history.filter.HistoryFilter.doFilter(HistoryFilter.java:43)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:384)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:219)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    FYI
    I have already checked all the webservices urls and password everything is fine.am I missing something.
    Regards,
    Satyabrat

Maybe you are looking for

  • Report for vendor across company code

    Hi, We want to have a report which include the vendor name along with its transaction total and net balance. Will also need to have the overall view of the vendor for all company codes, as many of our company codes purchases from the same supplier. R

  • How to Populate a Dropdown field for a table control with different keys

    Hi All, I have Table control with abt eight columns (fields). Out of these eight field one field is with dropdown list. In table control Project ID is Primary key column. Depending upon this Project ID value, i have different values which is to be po

  • Help on Materialized view

    Hi all , I need some help on materialized view. I have to make a MV in dbms_dtm schema I have 2 tables like below sales and orduct salescolumns: salesid,prodid,subid,charges and product columns: subid and billid sales.subid = product.subid. i need a

  • FaceTime bright highlights are overexposed.  How to fix this on my iMac with Lion.?

    FaceTime bright highlights are blown out, overexposed.  How to fix this on my iMac with Lion? 

  • Test rectangle

    need to modify the source code can't compile nedd to change the method. Urgent! below is the source code * TestRectangle.java * Version: * $Id:$ * Revisions: * $Log:$ import javabook.*; * A test class for the Rectangle class. class TestRectangle { *