ALE / IDOC Outbound Error Handling

Hi Experts,
I got an error in Outbound Process.
An IDOC gets the status 36 - Timed out.
Can anyone tell me how can i resolve this Error?.
Thanks in advance,
Sudhakar

Hi ,
        Best option is to keep a sql trace on the outbound idoc which will tell you at which perform or functional module ,the performance is taking time to fetch .
all check with basis in terms of timed out ,they would have set a paramater for time out in terms of mins or hrs.

Similar Messages

  • ALE outbound error handling

    Hi gurus,
    I've implemented some ALE systems successfuly. I mean the distribution of information is alright but, now, I want to get some notification when any outbound error occurs.
    I,ve filled the 'Post processing: permited agent' tab in the partner profile (both for partner and message type) but it doesn't work. I suppose I need to do something else.
    Can anybody help me with this matter?
    Thank you in advance.
    JM Parra.

    Hi,
    Just an added information
    Message Type : ALEAUD,is present which is used to give successful notification/confirmation  in case of the posting of the IDocs, this Message type should be configured on the inbound side( Partner Profile and the Distribution Model) after which an IDoc of ALEAUD Message Type would be generated and the segments in this IDoc would contains the details of the Message Type(Including IDoc no) for which the confirmation is generated.
    Thanks
    Krithika

  • OUTBOUND- ERROR HANDLING USING WORKFLOW

    Hi Gurus,
                   Can any one tell me about workflow & how to do error handling using WORKFLOW in OUTBOUND IDOC.Below are the points , Please check it & send me reply.
    1.Value not found for Custom IDoc fields.
    2. Partner Profile not maintained correctly.
    3. Syntax error in IDoc.
    4. IDoc ready for dispatch (ALE Service).
    Regards,
    Chiranjeevi.

    Hi,
    FOr most of your requirements, there is already std. SAP IDOC error Single-step tasks.
    Have a look at WE46 transaction.
    Also, if you go to SWO1 and search with "IDOC*", you will get all the BO's even.
    It's pretty straightfwd. Also, in Partner Profiles, WE20, for each of the IDOC type, there is one "Post.Processing AGent", whom if you set up correctly, will be the person receiving this Errored IDOC mails.
    Hope this helps
    venu

  • IDoc outbound errors - mail send step in WF to send info-mail to enduser

    Hello specialists
    I searched quite a lot in the forums now. I found lot of info but nothing regarding my issue.
    I need to send an info-mail to the end user creating purchase orders. But only if the idoc (outbound ORDERS) could not be sent (failing for some reason, i.e. if rfc connection fails). This is what I've done to achieve this:
    - in WE40 I linked my WF to process code EDIO
    - the WF-BATCH user has an email address assigned to it (in SU01)
    - the mail sending step in my WF is configured like this:
    recipient type = G (organizational object)
    Expression = &_WORKITEM.CREATEDBYUSER.ID& (this contains the enduser id)
    subject = Test for &WORKITEM.CREATEDBYUSER.ID&
    When testing the mail can not be delivered (error SO23).
    When setting recipient type to U (E-Mail address) and giving a valid e-mail address, then it works fine (SCOT, etc. is configured and mailing to external systems works). But setting the e-mail address hard coded style in the mail send step is not an option here!
    It seems that the send mail step (SELFITEM.SENDTASKDESCRIPTION) always requires a valid e-mail address. Is it not able to handle SAP user id's ?
    Thanks in advance for some guideance on this one.
    Renaud
    Edited by: Renaud Desarzens on Feb 11, 2010 3:00 PM

    Hello and thanks for your help.
    I was able to solve it like this:
    - don't use mail send step
    - instead, add new activity with a new task (SELFITEM.SENDTASKDESCRIPTION)
    - in the bindings (workflow -> step) set:
         B --> &TYPEID&
         &_WORKITEM.CREATEDBYUSER.ID& --> &ADDRESSSTRINGS&
    Seems that the mail send step doesn't allow TYPEID to be "B" because each time I tried to tweak the generated bindings that way it messed up the recipient type and expression I set before.
    Regards
    Renaud

  • ALE/IDOC TRANSPORT ERROR FOR Z TABLE

    Dear Experts,
                        I am new to ALE/IDOC,I am trying a simple scenario by transporting a ztable data between two clients with in a same server.
    steps i have done are :
    1, created logical system at both sender and receiver.
    2, assigned logical system to clients at both side.
    3, created segments for fields at Z table and created new message type.
    4, created RFC destination and port at both ends.
    5, created distribution model at sender.
    6, When i generated partner profile at sender i got the below error
      "Port could not be created
    RFC destination LOGSTM_210 not specified for system LOGSTM_210
    Enter the RFC destination and restart the generation"
    can any one please help me to solve this error?
    Thanks In Advance,
    Sujay.

    Hello Sujay,
    Have you added the message type SYNCH to the sender Partner Profile(WE20)?
    If not, then you have to manually add this message type to the Partner Profile & give the relevant port details. SYNCH is reqd. for RFC (read port) determination. This is reqd. before the generation of partner profile !!
    Hope i am clear.
    BR,
    Suhas

  • IDOC OutBound Error 29: Entry in outbound table not found?

    Dear All,
            I configed the customized IDOC,and used BD64,WE20 Generate Partner Profile.the partner type is u2018LSu2019,In We20,I clicked the check button .There is no error in check.Other config also correct.
    My outbound program main code is :
      WA_IDOC_CONTROL_RECORD-MESTYP = 'ZMSGTYPE_WE81'.              
      WA_IDOC_CONTROL_RECORD-IDOCTP = 'ZIDOCTYPE_WE30'.
    Receiver
      WA_IDOC_CONTROL_RECORD-RCVPOR = 'A000000003'.           "Port
      WA_IDOC_CONTROL_RECORD-RCVPRN = 'target100'.        "Partner number
      WA_IDOC_CONTROL_RECORD-RCVPRT = 'LS'."Partner type
      WA_IDOC_CONTROL_RECORD-RCVPFC = 'LS'."Partner function
    Sender
      wa_idoc_control_record-sndpor = 'A000000001'.           "Port
      wa_idoc_control_record-sndprn = 'source500'.           "Partner number
      wa_idoc_control_record-sndprt = 'LS'.             "Partner type
      WA_IDOC_CONTROL_RECORD-SNDPFC = 'LS'."Partner function
      DATA L_ITEM TYPE I.
      LOOP AT GT_IDOC.
        L_ITEM = L_ITEM + 1.
        WA_EDIDD-SEGNAM = 'ZSEG_WE31'.
        WA_EDIDD-SEGNUM = L_ITEM.
        WA_EDIDD-SDATA = GT_IDOC.
        APPEND WA_EDIDD TO IT_EDIDD.
      ENDLOOP.
      CLEAR L_ITEM.
      SORT IT_EDIDD BY SEGNUM.
      CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE'
           EXPORTING
                MASTER_IDOC_CONTROL            = WA_IDOC_CONTROL_RECORD
              OBJ_TYPE                       = ''
              CHNUM                          = ''
           TABLES
              COMMUNICATION_IDOC_CONTROL     = IT_COMMUNICATION_IDOC_CONTROL
                MASTER_IDOC_DATA               = IT_EDIDD
           EXCEPTIONS
                ERROR_IN_IDOC_CONTROL          = 1
                ERROR_WRITING_IDOC_STATUS      = 2
                ERROR_IN_IDOC_DATA             = 3
                SENDING_LOGICAL_SYSTEM_UNKNOWN = 4
                OTHERS                         = 5
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.

    hi Sun,
    The value 'X' means ABAP_TRUE, which means the outbound ALE settings for your message type are OK.
    Did you check the sy-subrc value after the FM 'MASTER_IDOC_DISTRIBUTE' is called ? and if yes what is the value ?
    Also did u check the IT_EDIDD table, whether is contains any values ?
    If all of the above is fine then call the FM 'EDI_DOCUMENT_DEQUEUE_LATER' by passing the document number of the outbound IDoc created, this number you will from the 'communication_idoc_control' table which you need to pass to your FM MASTER_IDOC_DISTRIBUTE.
    for your reference attached is code for it
        CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE'
          EXPORTING
            master_idoc_control            = wf_edidc
          TABLES
            communication_idoc_control     = int_comm_cntl
            master_idoc_data               = int_edidd
          EXCEPTIONS
            error_in_idoc_control          = 1
            error_writing_idoc_status      = 2
            error_in_idoc_data             = 3
            sending_logical_system_unknown = 4
            OTHERS                         = 5.
    if sy-subrc = 0.
      APPEND LINES OF lt_idoc_comm_control TO g_idoc_comm_control.
    endif.
      LOOP AT g_idoc_comm_control.
        CALL FUNCTION 'EDI_DOCUMENT_DEQUEUE_LATER'
          EXPORTING
            docnum = g_idoc_comm_control-docnum.
      ENDLOOP.
    {/code}
    hope this will solve your problem
    Edited by: Ashwinee on Dec 26, 2008 12:09 PM

  • File to Idoc - Outbound Error

    Hi,
       I am doing File to IDOC scenario. I got error
    in "Message has error status at outbound status" .. When
    I opend that messeage then i got this ...
    <SAP:IDOCTYP>ZIDOCIN</SAP:IDOCTYP>
      <SAP:CIMTYP />
      <SAP:MESTYP>ZMTIDOCIN</SAP:MESTYP>
      <SAP:MESCOD />
      <SAP:MESFCT />
      <SAP:SNDPOR>SAPX11</SAP:SNDPOR>
      <SAP:SNDPRN>Logi_01</SAP:SNDPRN>
      <SAP:SNDPRT>LS</SAP:SNDPRT>
      <SAP:SNDPFC />
      <SAP:RCVPOR>SAPA11</SAP:RCVPOR>
      <SAP:RCVPRN>A11CLNT200</SAP:RCVPRN>
      <SAP:RCVPRT>LS</SAP:RCVPRT>
      <SAP:RCVPFC />
      <SAP:TEST />
      Can any one tell me what to do to solve this.
    thx,
    Ansar.

    Hi,
    There is somethig worng with your Partner Function while defining the the Partner Profile, please check it. The Partner function is optionla and see if you need it
    Go thru the link,
    http://help.sap.com/saphelp_nw04/helpdata/en/dc/6b80b543d711d1893e0000e8323c4f/content.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/cdded790-0201-0010-6db8-beb9bb2b2660
    Thanks,
    Prakash
    Thanks,
    Prakash

  • SAP to XI IDoc Outbound Error

    Hi,
    I am sending an IDoc from SAP R/3 to SAP XI . In WE02 IDoc showing Status as 03 (sucess) but in SM58 it showing as Error
    *No service for system SAPTI2, client 030 in Integration Directory *
    Any Info?

    Got answer from XI forum

  • ALE-IDoc : Outbound message control for MIRO,IDoc message type for INVOIC

    Dear Experts,
                        I am using the IDoc message type INVOIC. For that i have created the new output type. Then i assinged the the Program RSNASTED and form routine ALE_PROCESSING.
                        But when i am saving the transaction in MIRO i am getting the Update Error like VN 056: Processing log for program RSNASTED
                        Please help me to rectify this problem

    Hi Dharmendiran,
    We also have the same requirement to send status acconf messages on Inbound INVOIC idoc posting..
    Can you let me know how you went about creating new output type..did you mean new output type in NACE for application MR?
    Thanks.

  • Query for Inbound processing for ALE IDOC & Outbound through Change Pointer

    Hi,
    I have a scenario, in which I have reduced Message Type for HRMD_A as Inbound and Outbound both.
    The Problem that I am facing is , whenver the inbound Idoc processing takes place, it updates the Infotypes and at the same time, as updation is done, Change Pointers write entries for the same in BDCP2. So, again the same changes are tracked for Outbound Message type and creates the idoc and post it again.
    This need to be avoided. The requirement is to stop such processing of the data from sending again.
    Any help for this would be appreciated.
    Regards,
    Heena

    Hi Heena...
    please check the fields present corresponding to the messagetype "HRMD_A" in trnsaction BD52. keep only the reuired fields and delete the remaining fields in BD52 trnsaction. if any changes happened in the required fields then change pointers will trigger an idoc. So, please check the fields present in BD52 transaction.
    please let me know if you need any clarifications further.
    Regards,
    Lokeswari.

  • ALE idocs outbound process

    ale setting i properly then i created zprogram to generate idocs , idocs are generated for out bond process . then i checked in other client the data is not received sending system showing the idoc status is 3 . other client i am not able to see the data? can any one tell me how check that idocs.

    first check the RFC thru SM59, whether the ports are mainted properly, next check whether partner profiles(WE20) are mainted correctly with the respective ports and then check if the idocs are stagnated anywhere between the server thru the help of middleware team
    if both are mainted properly debug the code with BD87 or WE19, where exactly u will know the issue which helps you to rectify the problem

  • Outbound Idoc error handling through workflow

    Hi,
    I am trying to set up the workflow for outbound error handling. I found that there is a task TS00007989 which need to set up.
    How this task can be triggered when outbound idoc error occurs in the system?
    Kr,
    Vithalprasad
    Edited by: Vittalprasad on Jun 9, 2010 11:52 AM

    Hi,
          Have a look
    Outbound IDoc Error Handling via Workflow
    Outbound idoc error handling through workflow

  • ALE idoc creation solvings

    Hi all,
           I am creating one ALE connection.In this connection error is occurs.The error No is 29( Error in ALE service).
    1.How to resolve the this error.
    2.If any ALE&IDOC creation error occurs,How to resolve.
    3. ALE creation single cleint is working or not?
          If any cases give examples.

    ALE Error Messages:
    02 - Error passing data to port
    04 - Error within control information on EDI subsystem
    05 - Error during translation
    25 - Processing despite syntax errors (outbound)
    29 - Error in ALE service
    32 - Resubmit edited intermediate document (DO NOT USE)
    Look at this link it has all details of ALE
    http://searchsap.techtarget.com/tip/0,289483,sid21_gci1268508,00.html

  • For IDOC monitoring, analysis and error handling in  ALE & idoc

    Hello...experts..can u please tell me about idoc monitoring,analysis and error handling..and can u please tell as per interview  point of view in this area..if availble can u send material about this...
    thx
    Message was edited by:
            durga kottapalli

    Hi,
    Reprocessing IDocs with errors
    Outbound (BD88)
    Once the error has been determined and corrected it is not necessary to resend the IDoc again. You simply resend the IDocs that have already been generated.
    Using the IDoc overview screen you need to take note of the following for each IDoc that was not processed:
    Error number: 2, 4, 5, 25, 29
    Error number: 30 (Execute Check IDoc dispatch to process)
    IDoc number
    Using the Error number, the IDoc number and the transaction BD88 , with the required message type you can resend the IDoc. Match the error number with this transaction and execute the function for the IDocs incorrectly processed.
    Just check the below link, u will get all IDOC related Interview questions
    http://www.allsaplinks.com/idoc_sample.html
    http://www.allsaplinks.com/
    http://www.sappoint.com/abap.html
    http://www.sap-img.com/
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVEDISC/CAEDISCAP_STC.pdf
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFAALEQS/CABFAALEQS.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVEDI/CAEDI.pdf
    http://www.sappoint.com/abap.html
    http://sap.ittoolbox.com/documents/popular-q-and-a/extending-a-basic-idoc-type-2358
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://expertanswercenter.techtarget.com/eac/knowledgebaseCategory/0,295197,sid63_tax296858_idx0_off50,00.html
    http://www.sapgenie.com/sapedi/index.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDALEIO/BCMIDALEIO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDALEPRO/BCMIDALEPRO.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/dc/6b7eee43d711d1893e0000e8323c4f/frameset.htm
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sap-img.com/
    http://www.allsaplinks.com/
    Regards,
    Suresh.
    Message was edited by:
            SureshKumar Ramamoorthy

  • Error handling problem with outbound idoc status 02 and  XML HTTP Port

    I set up an ALE scenario to send master data out of SAP via an XML HTTP port.  All goes well until the idoc receives error 02. 
    It looks like idocs in this error status with the use of an XML HTTP port can not be reprocessed via the standard SAP techniques.  Program RBDAGAIN takes them out of the list for reprocessing (even though the connection is back up and running).
    Is there any solution to still use the standard ALE error handling ?

    Hi Karin,
    Looks like based on note 701597, you can only reprocess these idocs manually via a workitem.  I qouted the relevant text below:
    3. Error handling with status '02':
    An HTTP IDoc in status '02' should not automatically be sent once again.
    Up to now, the RBDAGAIN report was used to resend incorrect IDocs.
    However, this report was adjusted and now deletes all IDocs in status 02
    to be routed to a HTTP port from the list of selected IDocs. IDocs to a
    HTTP port in status '02' should only be sent manually via a work item.
    Regards:
    Rex

Maybe you are looking for

  • Update IOS 7.0.4 Network Error 9006

    I just update my iphone to IOS 7.0.4 but i facing trouble with it. During processing file, it keep pop out says my network error 9006 and whole thing just stoped. I have already tried lots of time but it could not work. i also have tried deauthorise,

  • Cannot install Adobe Acrobat Pro on Windows XP

    Good day, I cannot install Adobe Acrobat Pro on my windows XP machine with SP2 and the latest updates. The error says that the software cannot be installed on the Operating system, please see minimum requirements. I meet all these but cannot install

  • Help with comparing string array with parameters

    I've posted my code in full so hopefully everyone can see exactly what I have been doing. Note - my code uses the observer/observable model. The method I am having the problem with the if statement is in the class HSBC. Basically when the pin count r

  • Transaction Management

    Hi there, I have a number of table manager classes, each of which saves data to their respective table in the database. With these tables it is likely that they may be locked by other users on occasion so I have put in exception handlers on the manag

  • Installing iTunes to an internal drive and sharing

    Want to reinstall my iTune library backup to a different internal hard drive and allow access to another user on the same computer. When I import songs, want the other account to be able to see them and when she adds something, I should be able to se