Reg the FM:-  IDOC_INBOUND_ASYNCHRONOUS

Dear experts,
After creating the idoc using the FM  IDOC_INBOUND_ASYNCHRONOUS I want to know the IDOC number that was generated. COudl any one help me in this regard.

Hello Pavan,
if you are sending the Idocs from sap system then you can check the Idoc number of the receiver in BD87 transaction. So please provide more details about your requirement.
Please find some usefull info
if both are SAP systems then you have to configurate SYNCH message type in sender system. Once it is done you can check there receiver Idoc numbers in BD87 of sender system (select the Idoc node and press "Trace Idocs" button".
If it is non SAP system then you can achive this by setting ALEAUD Idocs and run the program RBDSTATE in receiver system so that it sends you the Idocs numbers.
<removed by moderator>
Regards
Naresh
Edited by: Naresh Reddy K on Nov 12, 2010 2:43 PM
Edited by: Thomas Zloch on Nov 12, 2010 10:55 AM - please do not ask for ...

Similar Messages

  • Reg. the Business Service and Business System(Integration Directory).

    Hi,
            I have a small doubt reg. the Business Service and Business System. When do we need to go for creating a Business Service AND a Business System? I want to know the difference b/w them and the usage of a Business Service as compared to a Business System. Generally I create Business Systems in my configuration scinerioes. Could anybody pl. clarify on this?
    Regards,
    Murthy

    Murthy,
    It's been already discussed so many times, Juz give a search option in the thread, you will find a lot.
    Anyhow,Please refer the below threads.
    Re: Business Service <--> Business System
    Business service or Business system??
    Business Service and Business system
    Diff b/w Business service & Business System?
    Business Service / Business System
    business system and business service
    Best regards,
    raj.

  • Reg the job Configuartion

    Hi Guys,
    There is any Configuration present to delete the spool file of job after 30 or 40 Days of its execution.
    If you know Answer please replay to this mail.
    Reg,
    Hariharan

    Hi Hariharan,
    There are standard jobs that your basis team will set up as part of the system installation to do this, they will decide the retention period when they create the jobs.
    Program RSPO0041 will delete old spool requests.
    and
    Program RSBTCDEL will delete old job logs.
    Both have selection screen parameters that specify how long things are kept.
    Regards,
    Nick

  • Reg the Al11 directory parameter FM

    I need a FM that takes the Directory parameter(DIR_LOCAL) in AL11 as import and File path(D:/test\data\path\) as output, please help me in this reg.

    Hi,
    U can use Tcode CG3Y for downloading the file from application server to file on presentation server.
    With Regards,
    Dwaraka.S

  • Reg the sales order

    hi friends,
    How to find whether sales order is deleted or not.
    In which table and which field.
    Pls help me.

    HI,
    table is VBAK(sales document header table)
    FIELD is vbeln
    see the contents in the table.
    thanks and regards.
    Rajesh

  • Reg : The functionality of WMMBID02 Basic type in SAP.

    Hi All,
    Can anyone give me the functionality of WMMBID02 Basic type in SAP. Mean, not the structure of the Idocs i am talking about. But to which Module of SAP is it related to and what kind of inventory data it carries? what the significance of this data. which table get updated when this idocs gets posted successfully.
    And also that, From table /GLB/RGTTPLANHED, we can get the trip status. So wat exactly this trip status indicates?... can anyone explain this in detail?

    The message typer for this is WMMBXY and its used for Goods movement between storage location. This would internally calls MB01 transaction and related to MM module.

  • Reg the selection screen value request

    i am writing this code for getting corresponding material no for the plant which i giving in the selection-screen .
    parameter : WERKS type marc-werks,
                matnr type marc-matnr.
    data : begin of itab occurs 0,
           matnr like marc-matnr,
           werks like marc-werks,
           end of itab.
    at selection-screen on value-request for werks.
    select matnr werks from marc up to 10 rows into table itab.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING
      DDIC_STRUCTURE         = ' '
        RETFIELD               = 'WERKS'
      PVALKEY                = ' '
       DYNPPROG               = sy-cprog
       DYNPNR                 = sy-dynnr
       DYNPROFIELD            = 'WERKS'
      STEPL                  = 0
      WINDOW_TITLE           =
      VALUE                  = ' '
       VALUE_ORG              = 'S'
      MULTIPLE_CHOICE        = ' '
      DISPLAY                = ' '
      CALLBACK_PROGRAM       = ' '
      CALLBACK_FORM          = ' '
      MARK_TAB               =
    IMPORTING
      USER_RESET             =
      TABLES
        VALUE_TAB              = itab
      FIELD_TAB              =
      RETURN_TAB             =
      DYNPFLD_MAPPING        =
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    pls help

    Hi Check this ...
    Its working.....
    PARAMETER : werks TYPE marc-werks,
    matnr TYPE marc-matnr.
    DATA : BEGIN OF itab OCCURS 0,
    matnr LIKE marc-matnr,
    werks LIKE marc-werks,
    END OF itab.
    DATA: dynfields TYPE TABLE OF dynpread WITH HEADER LINE.
    DATA: return TYPE TABLE OF ddshretval WITH HEADER LINE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR werks.
      CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
        EXPORTING
          tabname           = 'T001W'
          fieldname         = 'WERKS'
          dynpprog          = sy-cprog
          dynpnr            = sy-dynnr
          dynprofield       = 'WERKS'
        TABLES
          return_tab        = return
        EXCEPTIONS
          field_not_found   = 1
          no_help_for_field = 2
          inconsistent_help = 3
          no_values_found   = 4
          OTHERS            = 5.
      REFRESH dynfields.
      READ TABLE return WITH KEY fieldname = 'WERKS'.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR matnr.
      SELECT matnr werks FROM marc
      INTO TABLE itab
      WHERE werks EQ return-fieldval.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING
    DDIC_STRUCTURE = ' '
      retfield = 'MATNR'
    PVALKEY = ' '
      dynpprog = sy-cprog
      dynpnr = sy-dynnr
      dynprofield = 'MATNR'
    STEPL = 0
    WINDOW_TITLE =
    VALUE = ' '
      value_org = 'S'
    MULTIPLE_CHOICE = ' '
    DISPLAY = ' '
    CALLBACK_PROGRAM = ' '
    CALLBACK_FORM = ' '
    MARK_TAB =
    IMPORTING
    USER_RESET =
      TABLES
      value_tab = itab
    FIELD_TAB =
    RETURN_TAB =
    DYNPFLD_MAPPING =
    EXCEPTIONS
    PARAMETER_ERROR = 1
    NO_VALUES_FOUND = 2
    OTHERS = 3  .
      IF sy-subrc NE 0.
    ENDIF.
    Regards,
    Sai Ramesh

  • Reg the Sort Key field in Vendor Master Record

    Hi MM Gurus,
    I have the requirement of displaying the Purchase Order number & Line Item number in the Accounting document of the Goods Receipt. i.e., in the "Assignment" field.
    I have made the necessary configuration in FS00 for the specific GL account & also specified 014 code in the corresponding Vendor master record.
    However, once I post the GR document, and checked the "Assignment" field, it displays only the Purchase Order number and not the Line item number.
    Kindly help me on this.
    Best Regards
    Sudhi

    Have you posted the above document after set 014 in FS00 ?
    Can you test the same in your practice client.
    Check the document for more details Sort Key Functionalities and the wiki content How to update Assignment field in FBL*N report - ERP Financials - SCN Wiki
    (Note: The changes of FS00 as 014 will not effect old documents)

  • Reg the usage of host command in web mode

    How do the client in three tier architecture can use the GUI opened by the HOST command?In client server it is working fine.In three tier,everything is opened in the apps server not on the client.please help out.
    regards,
    Dinesh

    Capture is used to sniff traffic flowing through the ace itself.
    What you were probably looking for is the command "debug".
    try -> debug aaa all
    This will show you all AAA related traffic/events.
    Be sure to remove the debug condition before logging out with "undebug all"
    If you want to capture traffic you need an access-list.
    Example:
    conf t
    access-list All permit ip any any
    exit
    capture all access-list All bufsize 2048 circular-buffer
    That should help you capture/sniff traffic passing through the ACE itself.
    Capture and Debug are two different things. :)
    Hope it helps
    Roble

  • Cold Fusion8 instaltion- Reg the service "Adobe LiveCycle data services ES"

    What is the purpose of the Cold Fusion8 service "Adobe LiveCycle data services ES"?I am using Sun solaris platform with Iplanet webserver
    I  don't require any Flash services still is it required to install that service?

    Could you tell me what are the basic steps to run the Livecycle on weblogic server? what are the system requirements and prices as per your experience?

  • Reg. the Message Splitting on the Receiver side.

    Hi,
           We are getting a Docuement/Message from a EDI partner. we need to split that doc. to send some of the data to the CRM system and rest of the data to the R3 system from the same EDI Doc. so is it possible to map the same EDI doc. to differnt systems like R3 and CRM? if  so then how do we do that?? we are using standard IDOCs in both R3 and CRM side.
    I would be very much tankful to you if you could give me a suggestion.
    Murthy

    Narasimha,
    Please correct me if i'm wrong. Your part of EDI document outbound message has to be reached R/3 System , and another part of EDI document outbound message has to be reached CRM System am I right?
    If yes then u need to define the following objects.
    2 Mapping programs.
    Mapping program1 --EDI to R/3 (Map the necessary fields)
    Mapping program2 - EDI to CRM(Map the necessary fields)
    In ID :
    Your outbound interface is same its EDI
    so while defining Receiver determination configure with two receivers(CRM, R/3 -with no conditions).
    Interface determination1 - as ususal choose inbound interface as R/3 (IDOC message type) and the corresponding Mapping Program1 as mentioned above.
    Interface determination2 - as ususal choose inbound interface as CRM (IDOC message type) and the corresponding Mapping Program2 as mentioned above.
    So if you look the objects in ID, it must have
    1 Receiver determination - with 2 configured receivers.
    2 Interface determination
    2 Receiver agreement.
    If you have any doubts reply back.
    Best regards,
    raj.

  • Hi.. urgent help neede reg the AVL display

    Im making use of ALV to dislay my report output.
    when my program is run in background , the ALV is getting displayed..but... there is another small table with information about<b> " the number of records passed "[ </b> .. i want to supress it... how to do that??
    i want to that supress that !!
    kindly help me pls!!

    Hi Ramya,
    just make use of the print parameter
      DATA:
        ls_print                              TYPE slis_print_alv,
      PERFORM alv_print                 CHANGING ls_print.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          is_print                            = ls_print
    *&      Form  alv_print
    *       Print options
    FORM alv_print CHANGING ps_print          TYPE slis_print_alv.
      ps_print-no_print_selinfos              = 'X'.
      ps_print-no_print_listinfos             = 'X'.
    ENDFORM.                    " alv_print
    Regards,
    Clemens

  • Help reg the Demos of Java 3D API

    Hi,
    I am new to the field of 3D programming. I just started by installing the Java3d1.2 FCS Linux on my system and I have already Java 1.2 installed. I am working on Linux environment. After installing the API I tried running the HelloUniverse demo. I get the following error.
    Xlib: Extension "GLX" missing on display ":0.0"
    Xlib: Extension "GLX" missing on display ":0.0"
    Xlib: Extension "GLX" missing on display ":0.0"
    Xlib: Extension "GLX" missing on display ":0.0"
    Xlib: Extension "GLX" missing on display ":0.0"
    Xlib: Extension "GLX" missing on display ":0.0"
    Xlib: Extension "GLX" missing on display ":0.0"
    Xlib: Extension "GLX" missing on display ":0.0"
    Exception in thread main java.lang.NullPointerException at HelloUniverse.main(HelloUniverse.java,Compiled Code).
    And when I run these demos by clicking on the Links on the index.html page,
    The applet is not started.
    Please let me know what to do to get things working.
    Thank you in advance.
    Vamshi

    it seem it the configuration of Xfree or mesa which is wrong do you have installed particular driver like NIVDIA DRIVER
    what kind of linux do you have (debian,mandrake,red hat,slackware,gentoo,LFS...)
    cyril

  • Reg the alert Issue

    Hello ,
    My form is having the following coding.
         IF :TR.CLEAR = 'Y' THEN
    DISPLAY_ITEM ('TR.TR_WORKED_DATE', 'CG$RED');
         alert_button := SHOW_ALERT(FIND_ALERT('ALERT_DEL'));     
    IF alert_button = ALERT_BUTTON1 THEN
    END IF;
    END Ifl
    In the above coding , before raiseing the alert i changed , The worked date field with Red color.
    But i got the alert message .But the bel0ow statement is not working
    DISPLAY_ITEM ('TR.TR_WORKED_DATE', 'CG$RED');
    Can u pls anyone help me to solve this issue.

    Hello,
    What do you mean by its now working? Is there any error while you are using this code?
    DISPLAY_ITEM ('TR.TR_WORKED_DATE', 'CG$RED');Here in this code DISPLAY_ITEM it seems your form/library procedure. Check the code inside that procedure. And what is this CG$RED visual attribute or something else??
    -Ammad

  • Reg the TDS certificate in Document Currency

    Dear All
    I want to print TDS certificate in Document Currency.
    I had posted a Document to a vendor in USD. My company code currency is INR.
    I want to print the TDS certificate in USD instead of INR. Is it possible to do the same.
    Regards
    R.Karthigayan

    Hi,
    Procedure for creating tax type and tax code is same as 194c,194j ...
    Whatever the tax types and tax codes are created are assigned to vendor master by using t.code: xk02
    No special configuration is required.
    regards
    Prasad

Maybe you are looking for

  • Annoying Messge GU362 while executing a Report Writer Group Report

    Hi, We have lots of reports that were created using Report Painter. We have used SETS in them. These sets are being updated from time to time (weekly / monthly). Everything worked great until we have upgraded from 4.6C to ECC6. Now, every time we exe

  • "Can't finish previewing" error, file can not be save

    I have AI CS3 installed on a PC running Windows XP 64bit at Intel Core(TM) 6600 2.4GHz with 8 GB of RAM and NVIDIA Quadro FX 540. I have been getting the error "Can't finish previewing. Could not complete the requested operation." This happens many t

  • NTSC to PAL as .MPEG in Compressor 3.0.5

    We're using FCP 6.0.6 with Compressor 3.0.5.  We are to begin making PAL versions of our show with the following specifications: Format:  Mpeg-2 Stream Type:  Program Stream Main Profile @ Main Level Video Bit Rate:  CBR 8 Mbps Image Size:  720 x 576

  • Safari 4.0.4 update creates 7510 new permissions problems

    Prior to installing Safari update, running the 'Repair Permissions' in Disk Utility found only one error -- the SUID modification on ARDAgent (Apple Remote Desktop Agent). Apple documents this as being a known issue, but harmless and can be safely ig

  • How can I generate multiple unique random numbers?

    Hello, I am trying to generate multiple random numbers between a given set of numbers (1-52) and not have the same number generated twice within that set. I can compare the last and next numbers with the compare function but how would I go about comp