Wht does it mean by reprocesing of idoc

wht does it mean by reprocessing of idoc
BD87 - Inbound IDoc reprocessing
BD88 - Outbound IDoc reprocessing
do we recreate an idoc again ...
how do we do this ?

Hi ,
       Some times in outbound process , idocs are generated but may not sent to other system and get errors like status 29, 27  or may get only 03(idoc created).So we can reprocess these error idocs using BD88(outbound).
    For inbound idoc is able to get but unable to post data into sap and get some errors .So these inbound idocs are reprocessed using BD87.
Reward if it is usful.
Thanks,
Srikanth.A

Similar Messages

  • U can hide the message by using #EC! Wht does it mean?

    Hi Experts,
    When am doing Extended Prog. check, am getting,
    1- <i><b>U can hide the message by using #EC!</b></i>
    Wht does it mean?
    2 - <i><b>No read access to field my_field!</b></i>
    Wht does it mean?
    thanq.

    Hello,
    This is error is gave by Tcode SLIN,
    Now in ur case the ur_field is not used any where in the report except the declaration line.
    So this error is give by SAP.
    In order to hide thiw warnigng u can use the  word "  # EC NEEDED.-
    This is will hide the warning.
    But my suggestion is remove the field from declarion.
    Regards,
    Vasanth

  • Wht does it mean of   " * " in Long texts of  potextheader-text_form = '*'.

    Hi Experts,
    clarify one of my simple doubt, am populating the header text to PO, by BAPI, so, code is,
        potextheader-text_id = 'F01'.
        potextheader-text_form = '*'.
        MOVE t_vbak-kunnr TO potextheader-text_line.
        APPEND potextheader.
    let me know that, Wht does mean of " * " in the statement of      potextheader-text_form = '*'.
    thanq
    Edited by: Srinivas on Jun 19, 2008 3:44 PM

    Some format keys are defined by SAPscript. They have a predefined meaning and can be used in all texts:
    "*" Default paragraph
    The format definitions which are specified for the paragraph defined in the assigned style or form as the default paragraph are used for the output formatting of the paragraph involved.
    "/" New line
    The subsequent text is written to a new line during output formatting. The formatting attributes of the last paragraph format are retained.
    "/:" SAPscript control command
    The characters contained in the actual text line are not output as text but are regarded as a control command. They are not interpreted or executed until output formatting of the text. Control commands must always fit into a line fully. Subsequent lines are not allowed.
    "/*" Comment line
    This line is not taken into account during output formatting of the text.
    "=" Extended line
    This line is not subject to the line formatting in the SAPscript editor. The text contained in this line is appended directly to the character of the preceding text line which was output last. If this is not required, there must be at least one blank at the beginning of the extended line.
    "/=" Like extended line
    But the subsequent text is placed in a new line during output formatting.
    "(" Raw line
    The subsequent editor line is not interpreted by the SAPscript composer during output formatting. This means that character formats, symbols, tab characters, masking characters, or hypertext links which may be contained in this line are not evaluated and are therefore passed unchanged to the output device. The text contained in this line is also appended directly to the character of the preceding text line which was output last. If this is not required, there must be at least one blank at the beginning of the extended line.
    "/(" Like raw line
    But the subsequent text is placed in a new line during output formatting.
    ">x" Fixed line
    The line is not ready for input in the SAPscript editor. It can also not be deleted or separated. You can only create fixed lines with a program . You can therefore give a text a fixed structure, for example, which cannot be changed by the user.
    You can use any number or letter for the 'x'. You can therefore separate different sub-headings, for example. If several fixed lines occur consecutively with the same indicator, they are regarded as a unit by the SAPscript editor. It is not possible to insert anything between these lines in the editor.
    In the case of fixed lines, SAPscript print formatting interprets the first two characters of the line as a paragraph format for formatting. You therefore need to enter the required paragraph format or blank here.

  • Wht does it mean - "ASSIGN it_DB_TBL_name TO fs1 CASTING TYPE x"?

    Hi Experts,
    Just curious,
    Pls. let me know that, Wht is the functionality of the following statement:
    ASSIGN it_DB_TBL_name TO <fs1> CASTING TYPE x
    thanq

    ASSIGN feld TO <fs> CASTING TYPE type.
    ASSIGN feld TO <fs> CASTING TYPE (typename).
    ASSIGN feld TO <fs> CASTING LIKE fld.
    ASSIGN feld TO <fs> CASTING DECIMALS dec.
    You can use ASSIGN ... CASTING to treat the contents of a field as a value of another type using a field symbol. One application for this statement would be to provide different views on a structure with casts on different types.
    One wide-spread ABAP technique is to use C fields or structures as containers for storing structures of different types that are frequently only known at runtime. The components of the structure are selected with offset/length accesses to the container. Since this technique no longer works with Unicode, you can also look upon an existing memory area as a container with the suitable type definition using a field symbol with the ASSIGN ... CASTING statement. In the next example, a certain field of database table X031L is read, whereby the field and table names are only defined at runtime.
    Example:
    * Read a field of table X031L
    PARAMETERS:
      TAB_NAME    LIKE SY-TNAME,             "Table name
      TAB_COMP    LIKE X031L-FIELDNAME,      "Field name
      ANZAHL      TYPE I DEFAULT 10.         "Number of lines
    DATA:
      BEGIN OF BUFFER,
        ALIGNMENT TYPE F,                    "Alignment
        C(8000)   TYPE C,                    "Table contents
      END OF BUFFER.
    FIELD-SYMBOLS:
      <WA>   TYPE ANY,
       TYPE ANY.
    * Set field symbol with suitable to buffer area
    ASSIGN BUFFER TO <WA> CASTING TYPE (TAB_NAME).
    SELECT * FROM (TAB_NAME) INTO <WA>.
      CHECK SY-DBCNT < ANZAHL.
      ASSIGN COMPONENT TAB_COMP OF STRUCTURE <WA> TO .
      WRITE: / TAB_COMP, .
    ENDSELECT.
    Until now, in the ASSIGN feld TO <f> CASTING ... statement, the system checked to ensure that the field was at least as long as the type that was assigned to the field symbol, <f>. (Field symbols can either be typed at declaration or the type specified in an ASSIGN statement using CASTING TYPE). The syntax check is now more thorough. Now, you can only assign the field field (in either a Unicode or non-Unicode program)
    provided it is at least as long as the type assigned to the field symbol <f>. Otherwise, the system returns a syntax error. At runtime, the system only checks to see whether or not the lengths are compatible in the current system (as before).
    If the field type or field symbol type is a deep structure, the system also checks that the offset and type of all the reference components match in the area of field that is covered by <f>. The syntax check is now more thorough. Now, the system checks that these components must be compatible with all systems, whether they have a one-byte, double-byte, or four-byte character length. At runtime, the system only checks to see whether or not the reference components are compatible in the current system
    In Unicode systems, in the ASSIGN str TO <f> TYPE C/N and ASSIGN str TO <f> CASTING TYPE C/N statements, the length of str may not always be a multiple of the character length, in which case the program terminates at runtime.

  • Does it mean.....IDOC - XI - File

    Hi Experts,
    I am very new to XI..
    for IDOC to File
    If IDOC resides at R/3 side then you don't require sender communication channel and sender agreement. Because it resides at Integration Engine. What does it mean?
    My doubt is here if, File to IDOC
    then same as like, you shouldn't require receiver communication channel and as well..Am I right??
    Regards,
    YRaj.

    Hi,
    IDOC Resides on ABAP Stack
    RFC Resides on J2EE Stack
    Here I Will tel u the Message Flow Behind this
    When u r Using a RFC Adapter
    First the adapter Shld Pic the Msg Using the RFC CC.
    Then It will give the Msg to IE , the IE Can Post the Msg to IS Using the XI Adapter Internally.
    So this is the Mechanism to post the Msg From Sender to IS---This is Onward journey
    So If u Consider For IDOC Means
    Here IDOC Resides on IE , So Here no Need of Adapter To Process the Steps so that IE can Receive the Msg.
    So this is the Flow
    Message Flow in XI----Please Go through this
    /people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi
    Reward Points if Helpful
    Regards
    Sesh

  • Wht does mean of CONFIRMing of a Stock Transfer Order - STO??

    Hi Experts,
    Would like to know that,
    1 - Wht does mean of CONFIRMing the Stock Transfer Order-STO?
    2 - I guess, CREATing STO is just like that creationg of a PO, Am I correct?
    3 - Is ther any BAPI for CONFIRMing a STO?
    thanq

    Hi,
    Do you think of 'vendor confirmation'? Maybe it is possible to use it in case of STO...the fields are active...
    http://help.sap.com/saphelp_47x200/helpdata/en/75/ee13e855c811d189900000e8322d00/frameset.htm
    BR
    Csaba

  • Wht does mean of CONFIRMing of Stock Transfer Order-STO?

    Hi Experts,
    Would like to know that,
    1 - Wht does mean of CONFIRMing the Stock Transfer Order-STO?
    2 - I guess, CREATing STO is just like that creationg of a PO, Am I correct?
    3 - Is ther any BAPI for CONFIRMing a STO?
    thanq

    Sri,
    May be it looks like but you can also look at and test in SE37 before applying:
    Pls check the BAPIs,
    BAPI_OUTB_DELIVERY_CONFIRM_DEC BAPI for Outbound Delivery Confirmation from a Decentralized System
    BAPI_OUTB_DELIVERY_SPLIT_DEC BAPI for Subsequent Outbound-Delivery Split from a Decentralized Syste
    and at last call this for commit work:
    BAPI_TRANSACTION_COMMIT
    Amit.

  • Wht does the term Conversion Factor - Banking term exactly mean???

    Wht does the term Conversion Factor - Banking term exactly mean???

    If you are referring to JAX-WS 2.x and the asynchronous client APIs, it is the latter.
    If you are not referring to the JAX-WS APIs, it probably means the former.

  • Does it mean that, 1 CDM/Partner Profile/Port = 1 specific partner?

    Hi experts,
    As I am beginner to IDoc concept, hv few doubts, like,
    1) Does it mean that the development of, 1 CDM(Distribution Model) / 1Partner Profile / 1Port = exclusively 1 specific partner? I mean, for instance the organisation possess 100 partners, so it means that it shuld hv 100 CDMs(Distribution Model) / 100 Partner Profiles / 100 Ports?
    2) For out bound direction, for a newly created IDoc sending Does it not necessory to create/use the Process code?
    3) If partner profiles r created, so the Ports r automatically cretaed in the system? Or we must create the ports explicitly?
    4) Does it means that The distribution of CDM from sender to receiver = Creation of new CDM in the receiving system for that particular partner?
    ThanQ in advance,
    Rgds,
    Sri.

    Hi,
    1) Does it mean that the development of, 1 CDM(Distribution Model) / 1Partner Profile / 1Port = exclusively 1 specific partner? I mean, for instance the organisation possess 100 partners, so it means that it shuld hv 100 CDMs(Distribution Model) / 100 Partner Profiles / 100 Ports?
    It is not necessary exclusively but it can be (depend on your business process).
    You could also have a single logical system and a single IDoc port for multi partner purposes. In this case, you can use message code and message function to segregate the partner data in receiver system/sender system.
    2) For outbound direction, for a newly created IDoc sending Does it not necessory to create/use the Process code?
    For transactional data i.e sales order, billing, delivery and etc., you still need to use process code via message control setup (in partner profile). However, for master data distribution i.e material master, vendor master, customer master and so on,  you do not need to setup process code in the partner profile. The extraction program will call corresponding FM to generate and distribute the IDoc.
    3) If partner profiles are created, so the Ports r automatically cretaed in the system? Or we must create the ports explicitly?
    You can use existing IDoc port for new created partner profile or you can create new port via transaction WE21. System will not create automatically the port. You need to link to correponding message type in partner profile (WE20).
    4) Does it means that The distribution of CDM from sender to receiver = Creation of new CDM in the receiving system for that particular partner?
    If both sender and receiver systems are SAP then you need to setup distribution model (BD64) for both system. Otherwise, if only one SAP system involved and other is external system then you need only to setup one distribution model.
    Hoep this will help.
    Regards,
    Ferry Lianto

  • I cannot acess some of my emails. Thunderbird keeps saying "connection to SMTP server (email adress) timed out. What does that mean? What do I do please?

    I purchased 2 new email, adresses a few weeks ago. Both were fine but a few days ago I was stopped sending and stopped receiving emails on the one. The message comes up on my screen "connection to SMTP server (followed by my email adress) timed out. That does not mean a thing to me. What should I do please?

    Thankyou.
    I had been asked by ICANN some days ago to do something but I thought it was a scam so ignored it. Most other users I have spoken to have never heard of ICANN or been asked to 'register' with them or whatever. Anyway, post writing to you I have now 'registered' with them . When I now click on my incoming email adress it just says "failed to connect to server" but why it fails I do not know.

  • Hi Apple Team, I would like to change the iCloud account on my iPhone, however it says I must 'delete the account' before doing so? Does this mean that I delete the entire existing account, or just delete it from my phone specifically?

    Hi Apple Team, I would like to change the iCloud account on my iPhone, however it says I must 'delete the account' before doing so? Does this mean that I delete the entire existing account, or just delete it from my phone specifically?

    From the iPhone only.

  • What does this mean:Photoshop 13.1.2 for Creative Cloud Installation failed. Error Code: U44M1P7

    What does this mean:Photoshop 13.1.2 for Creative Cloud Installation failed. Error Code: U44M1P7
    I found the manual update, which worked!
    http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5595&fileID= 5604

    Hi Barbara,
    For failed 13.1.2 update error U44M1P7, Please refer to the solution mentioned in the following threads :
    http://forums.adobe.com/message/5396792#5396792
    http://forums.adobe.com/message/5409050#5409050

  • Index xml file is missing ... does that mean I have lost all my work? HELP!!!!!!!!!

    index file is missing What does that mean?

    You might want to elaborate on exactly what it is you're talking about.

  • Downloads from itunes fail - error code 8003 - what does that mean, or more importantly, how do I get what I paid for?

    Downloads from itunes fail - error code 8003 - what does that mean, or more importantly, how do I get what I paid for?

    Try the troubleshooting for that error code on this page : iTunes: Advanced iTunes Store troubleshooting - Apple Support (search for '8003' on the page, it's just below half-way down)

  • GetResponseCode() returns -1,what does it mean

    Hi ,
    The HttpURLConnection class's getResponseCode() method returns -1.
    getResponseMessage() returns null.i m accessing my servlet through a proxy.i know only about 1xx to 5xx codes.i dont know what does it mean by -1.But at server side the request is properly sent and processed and i m getting 200 and ok after processing at serverside. the object is sent to client also. but it is not received by the client.
    Null object is returned.I think proxy is the culprit.If anyone can help me what -1 means,it will be really greatfull to diagnoise my issue in detail and solve my problem soon.
    Your help will be greatfull.
    Thanks
    prakash

    As it says perfectly clearly, right there in the API documentation for the method:
    "Returns -1 if no code can be discerned from the response (i.e., the response is not valid HTTP)."

Maybe you are looking for