I got the time out error in production system how can i rectity

TYPES :  BEGIN OF TY_FINAL_IDEL,
          IEDD(10),
        IEDD  LIKE AFRU-IEDD,
         MATNR LIKE AFPO-MATNR,
         AUFNR LIKE AFPO-AUFNR,
         PERNR LIKE AFRU-PERNR,
         BUDAT(10),
         GRUND LIKE AFRU-GRUND,
         MATKL LIKE MARA-MATKL,
        MENGE LIKE MSEG-MENGE,
         PSMNG LIKE AFPO-PSMNG,
        PSAMG LIKE AFPO-PSAMG,
          XMNGA LIKE AFRU-XMNGA,
         STPRS LIKE MBEW-STPRS,
        NETPR LIKE EKPO-NETPR,
         TC LIKE MBEW-STPRS,
         GRDTX LIKE TRUGT-GRDTX,
         ARBPL LIKE CRHD-ARBPL,
          MAKTX LIKE MAKT-MAKTX,
         END OF TY_FINAL_IDEL.
TYPES :  BEGIN OF TY_MARA_IDEL,
        MATNR LIKE MARA-MATNR,
        MATKL LIKE MARA-MATKL,
         MATNR LIKE MAKT-MATNR,
         MAKTX LIKE MAKT-MAKTX,
        MENGE LIKE MSEG-MENGE,
         STPRS LIKE MBEW-STPRS,
        NETPR LIKE EKPO-NETPR,
         END OF TY_MARA_IDEL.
TYPES : BEGIN OF TY_AFPO_IDEL,
        AUFNR LIKE AFPO-AUFNR,
        PSMNG LIKE AFPO-PSMNG,
        MATNR LIKE AFPO-MATNR,
       PSAMG LIKE AFPO-PSAMG,
         BUDAT LIKE AFRU-BUDAT,
         ARBID LIKE AFRU-ARBID,
         XMNGA LIKE AFRU-XMNGA,
         GRUND LIKE AFRU-GRUND,
        PERNR LIKE AFRU-PERNR,
       AUFNR LIKE AFRU-AUFNR,
        IEDD LIKE AFRU-IEDD,
       AUFNR LIKE AFRU-AUFNR,
        AUFPL LIKE AFRU-AUFPL,
        APLZL LIKE AFRU-APLZL,
        VORNR LIKE AFRU-VORNR,
       GRDTX LIKE TRUGT-GRDTX,
        END OF TY_AFPO_IDEL.
   TYPES : BEGIN OF TY_CRHD_IDEL,
           OBJID LIKE CRHD-OBJID,
           ARBPL LIKE CRHD-ARBPL,
           AUFPL LIKE V_QAPO-AUFPL,
           VORGLFNR LIKE V_QAPO-VORGLFNR,
           VORNR LIKE V_QAPO-VORNR,
           ARBID LIKE V_QAPO-ARBID,
           END OF TY_CRHD_IDEL.
TYPES : BEGIN OF TY_TRUGT_IDEL,
          SPRAS LIKE TRUGT-SPRAS,
          GRUND LIKE TRUGT-GRUND,
          GRDTX LIKE TRUGT-GRDTX,
          END OF TY_TRUGT_IDEL.
TYPES : BEGIN OF TY_AFRU_IDEL,
        AUFNR LIKE AFRU-AUFNR,
        END OF TY_AFRU_IDEL.
*& VARIABLE DECLARATION                                                 *
DATA   : R_WERKS LIKE AFRU-WERKS,
         R_MATNR LIKE AFPO-MATNR,
        R_MATKL LIKE MARA-MATKL,
         R_AUFNR LIKE AFPO-AUFNR,
        R_ISDD LIKE AFRU-ISDD,
         R_IEDD LIKE AFRU-IEDD.
*& INTERNAL TABLE DECLARATION                                           *
DATA : IT_FINAL_IDEL TYPE STANDARD TABLE OF TY_FINAL_IDEL WITH HEADER LINE INITIAL SIZE 100 WITH DEFAULT KEY.
DATA : IT_AFPO_IDEL TYPE STANDARD TABLE OF TY_AFPO_IDEL WITH HEADER LINE INITIAL SIZE 100 WITH DEFAULT KEY.
DATA : IT_MARA_IDEL TYPE STANDARD TABLE OF TY_MARA_IDEL WITH HEADER LINE INITIAL SIZE 100 WITH DEFAULT KEY.
DATA : IT_CRHD_IDEL TYPE STANDARD TABLE OF TY_CRHD_IDEL WITH HEADER LINE INITIAL SIZE 100 WITH DEFAULT KEY.
DATA : IT_TRUGT_IDEL TYPE STANDARD TABLE OF TY_TRUGT_IDEL WITH HEADER LINE INITIAL SIZE 100 WITH DEFAULT KEY.
DATA : IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
DATA : WA_FIELDCAT_LN LIKE LINE OF IT_FIELDCAT.
DATA : IT_EVENTCAT  TYPE SLIS_T_EVENT.
DATA : WA_EVENTCAT_LN  LIKE LINE OF IT_EVENTCAT.
DATA : IT_LAYOUT TYPE SLIS_LAYOUT_ALV.
DATA: S_COL_POS TYPE I.
*& SELECTION SCREEN DECLARATION                                         *
SELECTION-SCREEN BEGIN OF BLOCK : BLOCK WITH FRAME.
SELECT-OPTIONS:   S_WERKS FOR AFRU-WERKS DEFAULT 'IN01' NO INTERVALS NO-EXTENSION , "Plant
                  S_MATNR FOR AFPO-MATNR, "Material Code
                 S_MATKL FOR MARA-MATKL  NO INTERVALS NO-EXTENSION, "Material Group
                  S_AUFNR  FOR AFPO-AUFNR, "Order Number
                  S_IEDD FOR AFRU-IEDD  OBLIGATORY.    "Confirmed date for execution finish
*NO INTERVALS NO-EXTENSION
SELECTION-SCREEN END OF BLOCK BLOCK.
AT SELECTION SCREEN                                                  *
AT SELECTION-SCREEN ON S_WERKS.
  SELECT SINGLE WERKS FROM AFRU INTO R_WERKS WHERE WERKS IN S_WERKS.
  IF SY-SUBRC <> 0.
    MESSAGE E001(ZIN01_RDPR).
  ENDIF.
AT SELECTION-SCREEN ON S_MATNR.
  SELECT SINGLE MATNR FROM AFPO INTO R_MATNR WHERE MATNR IN S_MATNR.
  IF SY-SUBRC <> 0.
    MESSAGE E002(ZIN01_RDPR).
  ENDIF.
*AT SELECTION-SCREEN ON S_MATKL.
SELECT SINGLE MATKL FROM MARA INTO R_MATKL WHERE MATKL IN S_MATKL.
IF SY-SUBRC <> 0.
   MESSAGE E003(ZIN01_RDPR).
ENDIF.
AT SELECTION-SCREEN ON S_AUFNR.
  SELECT SINGLE AUFNR FROM AFPO INTO R_AUFNR WHERE AUFNR IN S_AUFNR.
  IF SY-SUBRC <> 0.
    MESSAGE E004(ZIN01_RDPR).
  ENDIF.
AT SELECTION-SCREEN ON S_IEDD.
SELECT SINGLE IEDD FROM AFRU INTO R_IEDD WHERE IEDD IN S_IEDD.
IF SY-SUBRC <> 0.
   MESSAGE E005(ZIN01_RDPR).
ENDIF.
IF S_IEDD-LOW IS INITIAL OR S_IEDD-HIGH IS INITIAL.
    MESSAGE E005(ZIN01_RDPR).
    ENDIF.
SELECT SINGLE IEDD FROM AFRU INTO R_IEDD WHERE IEDD IN S_IEDD.
IF SY-SUBRC <> 0.
  MESSAGE E006(ZIN01_RDPR).
ENDIF.
START OF SELECTION                                                   *
START-OF-SELECTION.
PERFORM SELECT_DATA.
*PERFORM MAIN_DATA.
PERFORM BUILD_FIELDCATALOG.
PERFORM DATA_DISPLAY.
FORM TO SELECT DATA INTO INTERNAL TABLE
FORM SELECT_DATA.
  SELECT FAUFNR   FPSMNG FMATNR   GBUDAT GARBID GXMNGA GGRUND GPERNR  GIEDD GAUFNR GAUFPL GAPLZL  G~VORNR   INTO CORRESPONDING FIELDS OF TABLE IT_AFPO_IDEL
         FROM AFPO AS F
         INNER JOIN AFRU AS G ON FAUFNR = GAUFNR
         WHERE F~AUFNR IN S_AUFNR   AND
               F~MATNR IN S_MATNR AND
               G~WERKS = 'IN01' AND
                G~XMNGA <> 0 AND
               G~IEDD IN S_IEDD .
              G~WERKS IN S_WERKS AND
          IF SY-SUBRC <> 0.
         MESSAGE E006(ZIN01_RDPR).
         ENDIF.
IF SY-SUBRC = 0.
  SELECT GRUND GRDTX INTO CORRESPONDING FIELDS OF TABLE IT_TRUGT_IDEL FROM TRUGT
                     FOR ALL ENTRIES IN IT_AFPO_IDEL
                     WHERE GRUND = IT_AFPO_IDEL-GRUND .
ENDIF.
SELECT  HOBJID HARBPL IAUFPL  IVORGLFNR  IVORNR IARBID INTO CORRESPONDING FIELDS OF TABLE IT_CRHD_IDEL
                            FROM CRHD AS H
                            INNER JOIN V_QAPO AS I ON HOBJID = IARBID
                            FOR ALL ENTRIES IN IT_AFPO_IDEL
                            WHERE VORGLFNR = IT_AFPO_IDEL-APLZL AND
                                  ARBID = IT_AFPO_IDEL-ARBID AND
                                  OBJID = IT_AFPO_IDEL-ARBID .
IF SY-SUBRC = 0.
  SELECT BMATNR BMAKTX BSPRAS DMATNR D~STPRS INTO CORRESPONDING FIELDS OF TABLE IT_MARA_IDEL
                           FROM MAKT AS B
                           INNER JOIN MBEW AS D ON BMATNR = DMATNR
                           FOR ALL ENTRIES IN IT_AFPO_IDEL
                           WHERE DMATNR = IT_AFPO_IDEL-MATNR AND BSPRAS = 'EN'.
    ENDIF.
END OF SELECTION
DATA : PEDATE(10),
        POSDATE(10).
LOOP AT IT_AFPO_IDEL.
  CONCATENATE IT_AFPO_IDEL-IEDD6(2) IT_AFPO_IDEL-IEDD4(2) IT_AFPO_IDEL-IEDD+0(4)
    INTO PEDATE SEPARATED BY '.'.
  IT_FINAL_IDEL-IEDD = PEDATE.
   CONCATENATE IT_AFPO_IDEL-BUDAT6(2) IT_AFPO_IDEL-BUDAT4(2) IT_AFPO_IDEL-BUDAT+0(4)
    INTO POSDATE SEPARATED BY '.'.
  IT_FINAL_IDEL-BUDAT = POSDATE.
  IT_FINAL_IDEL-PERNR = IT_AFPO_IDEL-PERNR.
  IT_FINAL_IDEL-MATNR = IT_AFPO_IDEL-MATNR.
  IT_FINAL_IDEL-AUFNR = IT_AFPO_IDEL-AUFNR.
  IT_FINAL_IDEL-PSMNG = IT_AFPO_IDEL-PSMNG.
  IT_FINAL_IDEL-XMNGA = IT_AFPO_IDEL-XMNGA.
  IT_FINAL_IDEL-GRUND = IT_AFPO_IDEL-GRUND.
  READ TABLE IT_TRUGT_IDEL WITH KEY GRUND = IT_AFPO_IDEL-GRUND.
  IT_FINAL_IDEL-GRDTX = IT_TRUGT_IDEL-GRDTX.
  READ TABLE IT_CRHD_IDEL WITH KEY VORGLFNR = IT_AFPO_IDEL-APLZL AUFPL = IT_AFPO_IDEL-AUFPL.
IT_FINAL_IDEL-ARBPL = IT_CRHD_IDEL-ARBPL.
READ TABLE IT_MARA_IDEL WITH KEY MATNR = IT_AFPO_IDEL-MATNR.
IF SY-SUBRC = 0.
  IT_FINAL_IDEL-MAKTX = IT_MARA_IDEL-MAKTX.
IT_FINAL_IDEL-STPRS = IT_MARA_IDEL-STPRS.
  IT_FINAL_IDEL-TC    =  IT_AFPO_IDEL-XMNGA * IT_MARA_IDEL-STPRS.
ENDIF.
how can i rectify that one
in b5t run fine
but brp i got time_out error
how to rectify
give me a solution ,its very very urgent
Regards
ds
  APPEND IT_FINAL_IDEL.
CLEAR : IT_FINAL_IDEL,IT_AFPO_IDEL,IT_MARA_IDEL,IT_CRHD_IDEL.
  CLEAR : IT_TRUGT_IDEL-GRDTX,IT_FINAL_IDEL-TC,IT_FINAL_IDEL-MATNR,IT_FINAL_IDEL-MAKTX, IT_FINAL_IDEL-PSMNG, IT_FINAL_IDEL-STPRS.
  ENDLOOP.

In your END-OF-SELECTION, you are doing a number of table reads without the binary search option. This will cause the entire tables to be read for each read. Therefore, change this portion of the code to:
  DATA : pedate(10),
  posdate(10).
  SORT: it_trugt_idel BY grund,
        it_crhd_idel  BY vorglfnr aufpl,
        it_mara_idel  BY matnr,
    loop at it_afpo_idel.
  CONCATENATE it_afpo_idel-iedd+6(2) it_afpo_idel-iedd+4(2)
   it_afpo_idel-iedd+0(4) INTO pedate SEPARATED BY '.'.
  it_final_idel-iedd = pedate.
  CONCATENATE it_afpo_idel-budat+6(2) it_afpo_idel-budat+4(2)
  it_afpo_idel-budat+0(4) INTO posdate SEPARATED BY '.'.
  it_final_idel-budat = posdate.
  it_final_idel-pernr = it_afpo_idel-pernr.
  it_final_idel-matnr = it_afpo_idel-matnr.
  it_final_idel-aufnr = it_afpo_idel-aufnr.
  it_final_idel-psmng = it_afpo_idel-psmng.
  it_final_idel-xmnga = it_afpo_idel-xmnga.
  it_final_idel-grund = it_afpo_idel-grund.
  READ TABLE it_trugt_idel WITH KEY
    grund = it_afpo_idel-grund
    BINARY SEARCH.
  it_final_idel-grdtx = it_trugt_idel-grdtx.
  READ TABLE it_crhd_idel WITH KEY
    vorglfnr = it_afpo_idel-aplzl
    aufpl    = it_afpo_idel-aufpl.
  binary search.
  it_final_idel-arbpl = it_crhd_idel-arbpl.
  READ TABLE it_mara_idel WITH KEY
    matnr = it_afpo_idel-matnr
    BINARY SEARCH.
  IF sy-subrc = 0.
    it_final_idel-maktx = it_mara_idel-maktx.
    it_final_idel-stprs = it_mara_idel-stprs.
    it_final_idel-tc = it_afpo_idel-xmnga * it_mara_idel-stprs.
  ENDIF.
  APPEND it_final_idel.
* CLEAR : IT_FINAL_IDEL,IT_AFPO_IDEL,IT_MARA_IDEL,IT_CRHD_IDEL.
  CLEAR : it_trugt_idel-grdtx,it_final_idel-tc,it_final_idel-matnr,
  it_final_idel-maktx, it_final_idel-psmng, it_final_idel-stprs.
ENDLOOP.
Rob

Similar Messages

  • HT201210 my iphone 3 couldn't restore, its saying the error 46. what is the meaning of error 46?and how can i resolve it?

    my iphone 3 couldn't restore, its saying the error 46. what is the meaning of error 46?and how can i resolve it?

    It doesn't matter when you installed antivirus software; if you have it on your computer it will frequently block access from applications to sites it does not know about. A sync does not require access to a site not on your computer; an upgrade clearly does. So if you have never jailbroken any device you do not need to be concerned about your hosts file, but you DO need to temporarily disable your antivirus during the update process.
    The hosts file is an operating system file on all computers that overrides DNS lookup. In order to jailbreak or hack an iDevice the programs that do it need to redirect iTunes so it does not go to the Apple activation server, but instead goes to the hacking program for activation instructions. It does this by adding a record to the hosts file that bypasses the DNS lookup for gs.apple.com. But you don't have to be concerned about this.

  • Time out error in production server  for alv grid report

    hi. i have developed alv grid report using nested select statments. when i testing in development  server it is giving the output but in production server if i give 4 months then it is showing time out error.please help me out..its urgent.
    Thanks in advance.

    Hi Manu,
    Don't use Nested selected statements.
    Use the Following  Performance Tuning Options that i have given below so that your problem can be solved.
    1)  Always check the driver internal tables is not empty, while using FOR ALL ENTRIES
    2) Avoid for all entries in JOINS
    3) Try to avoid joins and use FOR ALL ENTRIES.
    4)   Try to restrict the joins to 1 level only ie only for tables
    5)   Avoid using Select *.
    6)   Avoid having multiple Selects from the same table in the same object.
    7)  Try to minimize the number of variables to save memory.  
    8)   The sequence of fields in 'where clause' must be as per primary/secondary index ( if any)
    9)   Avoid creation of  index as far as possible
    10) Avoid operators like  <>, > , < & like % in where clause conditions
    11) Avoid select/select single statements in loops.
    12) Try to use 'binary search' in READ internal table. Ensure table is sorted before using   BINARY SEARCH.
    13) Avoid using aggregate functions  (SUM, MAX etc) in selects ( GROUP BY , HAVING,)  
    14) Avoid using  ORDER  BY in selects
    15) Avoid Nested Selects
    16) Avoid Nested Loops of Internal Tables
    17) Try  to  use FIELD SYMBOLS.
    18) Try to avoid into Corresponding Fields of
    19) Avoid using Select  Distinct, Use DELETE ADJACENT
    <b>
    Reward Points for sure if you find it useful. </b>
    Regards
    Babu

  • I bought me and my wife a iPhone 4 32G and it turns out that she gets better signal then me mine keeps going in and out of service most of the time i only get one bar how can i fix this?

    I bought me and my wife a iPhone 4 32G and it turns out that she gets better signal then me mine keeps going in and out of service most of the time i only get get one bar how can i fix this?

    Restore as new in itunes and try again.

  • My internet is only connecting when the time capsule is performing a backup how can I fix this? I use the wireless for my computer and not connecting is frustrating.

    The airport time capsule 2TB is only connecting to the web when performing a backup, it just started doing this how do I fix it?

    That is a weird one.. never heard of it drop out except doing backups.
    Reset the TC to factory settings.
    The Factory Reset universal
    Unplug your TC/AE. Hold in reset. and power the TC/AE back on..  all without releasing reset and keep holding in for about 10sec. The time is not important.. it is the front LED rapid flashing that indicates you are in factory mode.
    Release reset.
    If it doesn’t flash rapidly you have released reset at some point and try again.
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC/AE will reboot after a couple of minutes with default factory settings and will wipe out previous configurations.
    No files are deleted on the hard disk.. No reset of the TC deletes files.. to do that you use erase from the airport utility.
    Redo the setup with all short names no spaces and pure alphanumeric.
    It should then work fine.. but I need more info if you still have problems.
    What modem? Is it a router?
    How is the TC connected?
    Is the computer running Mavericks?

  • The time line of imovie disappeared. How can I see it again?

    I have OSX version 10.9.3. I am working with imovie 10 but i am not able to see the time line. This hasn't let me edit the movie clips. How can I see the time line again?

    You have to double-click on an existing project icon or create a new project and then the timeline appears.  Could this be the reason?
    Geoff.

  • The time stamp on an imported comment: how can you set it?

    When you import a comment, by default does it show the time the comment was originally made or the time it was imported to the current document? And can you show both or toggle between the two?
    Thanks!!

    Hey Gin-from-SC!
    Here is an article that can show you how to set a time and date alert for your reminders when you create them:
    iCloud: Create, edit, and delete reminders
    http://support.apple.com/kb/PH12088
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • TS4006 pict up and ipod touch at and yard sale they for got the passcde un able to unlock it how can i unlock

    how can i unlock a ipod that was locked and the pascode was lost by prevesowner

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    If you then see the Activation Lock, you need the previous owners Apple ID and Password to use the iPod
    iCloud: Find My iPhone Activation Lock in iOS 7

  • I purchased an email itunes gift card. Itunes will not let me resend the email ( and error msg appears). How can I resend this email?

    I sent my sister an egift card. SHe did not recive it due to her settings. I have tried to resend it for several weeks, but ontinue to get a message stating that this function is unavailable that this time and to try again later. Is there anything I can do to resend this message??

    You can manually copy and paste the code and email it to your sister that way.

  • HT201210 just bought an i phone 3g and the woman has totally wiped it of everything..all its showing on screen is the time..no apps nothing..how can i do it??

    i have a totally blank  phone 3g..not a single app on it..help

    It's not possible to have a totally blank iPhone as you describe.
    Sounds like she simply restored it as "new".
    Try reading the User's Guide so you'll have a better understanding of how the iPhone works.

  • 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

  • Time out error

    Dear All,
    One of our production system and one of HR user got time out error while executing T-code PA30 , PA40 .
    Note : we  tried the transaction ( PA30 and PA40 ) in our user id ,it work smooth ,there is no issue with in my user id as well other HR user also .
    Only the specific user facing time out error in Production server.
    Note : while executing PA30 ,PA40 t-codes ,it takes long time to get initial screen itself finally got time out error (No issue with other SAP HR users)  .
    Pls check the below logs:
    Runtime Error          TIME_OUT
           Occurred on     17.08.2011 at   08:59:00
    Time limit exceeded.
    What happened?
    The program "SAPLRHAC" 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,
    Kindly advise ,is this related to any Authorization issue ???

    Hi,
    Please share SAP_BASIS/ SAP_HR release/patch level information of the affected SAP system.
    I would suggest you to create New Temp SAP User id with exact copy of that affected SAP User ID and then try to access PA30/PA40 with that New SAP User id login into affected system. Check that, u are facing the same behavior/issue with that New Temp SAP User id ?
    Regards,
    Bhavik G. Shroff

  • SoA Couldnt start- Time Out Error

    Hi,
    My oracle SOA version is 10.1.3.1. I have created a application ( say sampleApplication) in jdeveloper (webservice from wsdl). When deploying the application to the application server it takes a long time to complete (approx 30 mins) but it gets deployed without error. I got a perm gen error and I stopped the SOA. When started it again after incresing the perm gen size, the SOA couldnt start. Got the following error
    <ERROR> <collaxa> <ProcessJob::execute> Attempt (1/15) ... failed to connect ... retrying in 5 seconds ...
    <2009-09-11 17:55:13,130> <ERROR> <collaxa> <ProcessJob::execute> Timed out reading http://myURl....
    Maximum attempt of 15 was reached and the SOA failed to restart.
    After playing around with the server.xml (trying to remove all application entries and adding it one by one) found that when i removed the sampleApplication's entry from server.xml and tried starting SOA , it worked and it Started fine.
    Can any one point what might be the problem in my case.?
    Thanks in advance..
    (P.S: The other application deployed are developed in the same way as that of sampleApplication. So couldnt see any thing wrong with the sampleApplication. Other application entries in server.xml do not create this problem.)
    Edited by: user8655700 on Sep 11, 2009 7:03 AM

    Hi James,
    Thank You for your suggestion. I have some doubts.
    1) You suggested to revert back to old parameter and restart jDEV. What is the parameter i need to revert? I have only changed the max,min and perm size in opmn.xml because I keep getting perm gen error quite often. Did you mean those parameters ?
    2)Restarting jDev will solve the issue of longer deployment time for applications. But when I restart the SOA itself, it fails to start.I get the Time out error. On removing the application which took longer time to deploy from server.xml, SOA starts without error. No other changes have been made. So the question is why is the application which is successfully deployed from jdeveloper like many other applications stopping the SOA to start.?
    3)Or is the load during SOA startup is high, which results in it failing to start? If so how can I overcome this issue.
    Thanks,
    Ananth
    Edited by: user8655700 on Sep 14, 2009 10:25 PM

  • HTTP time out Error in BPM.....

    Hi
    Error Description:
    We have created a Sync-Async Bridge BPM scenario in XI.
    In the BPM scenario we are calling the web service, and if the response from the web service is an error message then we have retry in a loop up to 24 times after wait for every 1 min.
    We are sending the data to the web service using a proxy created in the R/3 system.
    We are getting the time out error in the R/3 system. 
    We have changed the following parameters in XI.
    In SXMB_ADM of XI we have set the value for the following parameter.
    Category                      parameter                                                                    current value
    SA_COMM                    CHECK_FOR_ASYNC_RESPONSE_TIMEOUT                120
    In SXMB_ADM of R/3 we have set the value for the following parameter.
    Category                      parameter                                                                    current value
    RUNTIME                      HTTP_TIMEOUT                                                            120
    When we put the value as 120 for the above parameters and we try for 2 times in the BPM process, then it is sending the response back to the R/3 system after completing the whole BPM process.
    But when we increase the no of retries in the BPM process then it is not sending the response back to the R/3 system in the same way, at that time we are getting the error in SXMB_MONI of R/3 system as given below.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    -   <!--
        Inbound Message
      -->
    - <SAP:ErrorHeader xmlns:SAP="http://sap.com/exchange/MessageFormat">
      <SAP:Context />
      <SAP:Code p1="500" p2="Timeout" p3="" p4="">HTTP.HTTP_STATUS_CODE_NEQ_OK</SAP:Code>
      <SAP:Text language="EN">HTTP status code 500 : Timeout</SAP:Text>
      </SAP:ErrorHeader>
    Please provide the solution for the same.
    Many Thanks
    Rinku Gangwani

    Hi Prateek,
    Thanks for your replay. I am able to open the URL from XI/PI.
    I tried by testing the same URL by using XI 3.0, its working fine and i am getting required data, but in PI 7.1 i am getting an error.
    Error is:
    In MONI:
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.net.ConnectException: Connection refused: connect
    In RWB:
    Message processing failed. Cause: com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.net.ConnectException: Connection timed out: connect
    What could be the reason?
    Regards,
    Venu

  • When pressing software Update it starts then gives a time out error

    I have a small problem my quicksilver is connected to the internet via ethernet cable and can search the net no problems but when I press Software update it starts then 30 seconds says Time Out Error 101 check your internet connections it then gives you an option to check connection and says it is working fine.
    The ethernet cable is connected to my sky router which have two other PCs connected to it.
    The time out error 101 is the only problem I have on my Power Mac G4 quicksilver
    Help would be very much appreciated

    Hi Moonkissed, and a warm welcome to the forums!
    Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, trash these files but don't empty the trash yet.
    Library/Preferences/com.apple.SoftwareUpdate.plist
    Library/Caches/com.apple.SoftwareUpdate
    Users/YourUserName/Library/Preferences/ByHost/com.apple.SoftwareUpdate.(12 digit number).plist
    Users/YourUserName/Library/Caches/com.apple.SoftwareUpdate
    Users/YourUserName/Library/Preferences/com.apple.SoftwareUpdate.plist
    Reboot & try it again.

Maybe you are looking for