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

Similar Messages

  • 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

  • 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

  • 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

  • Error in Sync-Async Bridge

    Hi,
    For RFC to Webservice Scenario I'm using Sycn-Async bridge.In that I'm getting the webservice response properly in MONI,but instead of sending that response message to RFC its taking the Request message again.
    Please help in this..
    I have developed the Interface so don't send me the link to develop the same.
    Thanks & Regards,
    yuga

    Yugapreetha,
      I am assuming that you have generated the required WSDL from the ID itself. If it is so then you might have noticed that the request messages come as the response one and the response message as the request one. Confused? When you are designing the synchronus interface you need to enter a sender interface or outbound interface and the other one is receiver interface or inbound interface. These are named as Output message Interface and Input Message Interface respectively in design. Now when you generate the WSDL and try to expose it as Webservice, it considers the Outbound message interface as output and Inbound message interface as input. The SAP design is such only. Thus it gives problem. So once you generate the WSDL from ID, you need to manually convert the names of Output Message Interface to Input Message Interface and Input Message Interface to Output Message Interface. It will work then.
      This is our finding.
    Regards,
      Sugata Basu
    PS: reward points if found helpful.

  • 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]

  • Time out error while syncing Iphone on Vista

    My Problem:
    - PC running Vista Home Premium and latest Itunes (8.2.1.6)
    - Syncing with Ipod Nano (4. gen) works without problems
    While Syncing my new IPhone 3gs Itunes properly creates a backup and syncs apps and music bought/installed on the Iphone with the PC but fails to copy Music and Podcasts from the PC to the Iphone.
    Error message (in german) declares "Sync failed due to devoce timeout" and afterwards "Sync failed due to media could not be found" (No error code no.).
    I tried sofar:
    - de- and reinstalling Itunes, Quicktime and Apple updater
    - reset of the Iphone
    - reinstalling Iphone OS via Itunes (this only worked on a different computer and failed on mine, also due to timeout)
    Similar problems have been reported by other users in independent germas user forums.
    Does anyone have an idea how to fix it?
    thx GT1910

    I have the same problem, OS is Windows Vista Ultimate Edition 64 bit, iTunes 8.2.1.6 64 bit version.
    Brand new iPhone 3G S 32 GB, attempted sync, managed about 140 files then got the same message as reported above. Once it fails, it wont work again until I reboot, then I might be able to sync 20-30 songs, then it fails again. I'm adding a few files at a time to the sync to try and do it in bits, but it seems to gradually be getting worse, now I cant even get 10 tracks to sync.
    This is my first ever Apple product and I have to say, not impressed so far :0(

  • 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

  • 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

  • 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

  • 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

  • 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

  • Time out errors when trying to download ios5

    I am trying to download the latest version for my iPad but keep getting time out errors and the download fails. My internet connection is still there and hasn't dropped off. Not sure why the download won't 'finish'.  Thanks for any help.

    I get the same issue on my Windows7 PC.  I have noted a manual upgrade path on this site
    http://osxdaily.com/2011/10/12/ios-5-download-available/
    But I'm not sure I know the difference between GSM and CDMA To be able to download the correct version.
    I'm in the uk

  • Time out error  on front end ( 60 seconds) developed in web dynpro ABAP

    Hi all
    I am getting TIME OUT error ( ERROR :-  Connection to partner break in 60 seconds) on front end (on web) because in SAP backend there is a function module excuting and taking 3 minutes. But on front end developed in web dynpro ABAP time out is coming in 60 seconds.
    Please help me how can i increase this TIME OUT time on front end more than 60 seconds.
    Please help as soon as possible

    Hi,
    see the <a href="http://help.sap.com/saphelp_nw70/helpdata/en/7b/72092aaa1342c5a3af7ce0b9a11ff9/frameset.htm">Documentation</a> and
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/78/9852b7c06b11d4ad310000e83539c3/frameset.htm">this</a>
    Regards, Heidi

Maybe you are looking for