Heirarchies loading thru Idoc

Hi Guys
I have a doubt, While loading hierarchies it defaultly select to the IDOCs, Why not PSA.
I need the exact defference b/w Idoc and PSA loading.Technically.
Thanks in ADvance
Regards
KA

Hi AK,
<b>Transfer into PSA</b>
The data is sent directly from the source system to the Business Information Warehouse and is stored in the PSA (Persistent Staging Area)
From there, you can either update the data automatically or manually in the corresponding data targets.
The transfer type here is called the TRF (Transactional Remote Function).
<b>Data transfer with IDoc</b>The data is packed into IDocs by the source system and sent to the Business Information Warehouse. In BW your data is saved persistently and intransparently in the IDoc store. From there the IDocs can be updated in the IDocs manually or automatically.
Requirements
Your transfer structure must not have more than 1000 Bytes in the character format.
Regards,
Prakash B

Similar Messages

  • Tracking the changes in HRP tables for sending thru IDOC

    Hi ALL,
    We are planning to send iDoc to another SAP system with HR Data from different HRP tables. HRP1000,HRP1001,HRP1005,HRP1008,HRP1013,HRP1050 etc
    If we change any PA infotypes they are linked to pernr and we can easily track the changes but if there is any change in HRP tables how do we track the changes and send them thru idoc.
    Thanks
    Bala Duvvuri

    Kiran,
    I am planning to use tocde PFAL  for both inital loads and delta loads of HR data to other system .Can i get all the changes for HRP tables in PFAL without custom programming?
    Let me explain with an example.
    I changed the text for one of the org units and I can see the changes in HRP1000.but how will i send this data to another SAP system using PFAL ,how will i track those changes.
    I heard that we can enable change pointers on each and every field in all the infotypes,so when i change the org unit text and  it is one of the field in PA0001 of every employee a change pointer is triggered .is that true
    Thanks
    Bala Duvvuri
    Edited by: Bala Duvvuri on May 16, 2010 8:33 AM

  • Create outbound delivery thru Idoc

    I am working on a sales return scenario in SAP as below :--
    01. Creating Return sales Order in SAP thru inbound  Idoc ( ORDERS01)
    02. Triggering outbound Idoc ( ORDRSP/ORDERS05) from return sales order to our return plant.
    03. Customer will send  returned goods to our return plant. Plant will send us an Idoc to create delivery in SAP.
    04. Once delivery is created thru Idoc , our batch job will do PGR.
    05. Billing batch job will generate credit memo for return.
    I am looking for advise on following points :--
    01. Can we create outbound delivery thru DESADV Idoc ?We are also planning to update delivery Item text thru this Idoc.
    02. SAP standard provides ( SHP_OBDLV_CREATE_SLS) this Idoc to create delivery with reference to Sales Order but not able to update delivery text thru this ?
    03.Any other way-out to create delivery and update delivery text thru inbound Idoc?
    Thanks in advance!!
    Best Regards/Rajesh

    Create your own and assign as processing the BAPI or a wrapper for it.
    Enjoy

  • Cutom T-Code for seding customer details thru IDoc Debmas

    Hi Experts,
    I have a requirment where in.. I need to send customer details thru IDoc from a custom screen which has cutomer text box and a submit button. After entering cutomer and clicking on submit debmas06 Idoc has to be triggered.
    I am not an ABAP expert... please help me with process on devloping the above reqirment.
    This is a critical requirment please help ASAP.
    Thanks,
    Suma

    Hi,
    u have to use standalone program..iam giving one sample code..aong with u have define the RFC (SM59,WE21(Create port),WE20(create partner profile,BD64 distribute model view)...u have to do..
    when u press on submit button,,,
    *& Report ZZ_Program_To_Create_Idoc
    report zz_program_to_create_idoc .
    tables: ekko,ekpo.
    selection-screen skip 3.
    selection-screen begin of block b1 with frame title titl.
    selection-screen skip.
    select-options s_ebeln for ekko-ebeln.
    selection-screen skip.
    selection-screen end of block b1.
    data: header_segment_name like edidd-segnam value 'Z1EKKO',
    item_segment_name like edidd-segnam value 'Z1EKPO',
    idoc_name like edidc-idoctp value 'Z19838IDOC1'.
    data: header_segment_data like z1ekko,
    item_segment_data like z1ekpo.
    data: control_record like edidc.
    data: messagetyp like edmsg-msgtyp value 'ZZ9838MESG1'.
    data: i_communication like edidc occurs 0 with header line,
    i_data like edidd occurs 0 with header line.
    data: begin of i_ekko occurs 0,
    ebeln like ekko-ebeln,
    aedat like ekko-aedat,
    bukrs like ekko-bukrs,
    bsart like ekko-bsart,
    lifnr like ekko-lifnr,
    end of i_ekko.
    data: begin of i_ekpo occurs 0,
    ebelp like ekpo-ebelp,
    matnr like ekpo-matnr,
    menge like ekpo-menge,
    meins like ekpo-meins,
    netpr like ekpo-netpr,
    end of i_ekpo.
    start-of-selection.
    select ebeln aedat bukrs bsart lifnr from ekko
    into table i_ekko where ebeln in s_ebeln.
    select ebelp
    matnr
    menge
    meins
    netpr
    from ekpo
    into table i_ekpo
    where ebeln in s_ebeln.
    control_record-mestyp = messagetyp.
    control_record-rcvprt = 'LS'.
    control_record-idoctp = idoc_name.
    control_record-rcvprn = '0MART800'.
    loop at i_ekko.
    header_segment_data-ebeln = i_ekko-ebeln.
    header_segment_data-aedat = i_ekko-aedat.
    header_segment_data-bukrs = i_ekko-bukrs.
    header_segment_data-bsart = i_ekko-bsart.
    header_segment_data-lifnr = i_ekko-lifnr.
    i_data-segnam = header_segment_name.
    i_data-sdata = header_segment_data.
    append i_data.
    select ebelp
    matnr
    menge
    meins
    netpr
    from ekpo
    into table i_ekpo
    where ebeln = i_ekko-ebeln.
    loop at i_ekpo.
    item_segment_data-ebelp = i_ekpo-ebelp.
    item_segment_data-matnr = i_ekpo-matnr.
    item_segment_data-menge = i_ekpo-menge.
    item_segment_data-meins = i_ekpo-meins.
    item_segment_data-netpr = i_ekpo-netpr.
    i_data-segnam = item_segment_name.
    i_data-sdata = item_segment_data.
    append i_data.
    endloop.
    clear i_ekpo.
    refresh i_ekpo.
    endloop.
    call function 'MASTER_IDOC_DISTRIBUTE'
    exporting
    master_idoc_control = control_record
    OBJ_TYPE = ''
    CHNUM = ''
    tables
    communication_idoc_control = i_communication
    master_idoc_data = i_data
    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.
    loop at i_communication.
    write: 'IDOC GENERATED', i_communication-docnum.
    endloop.
    commit work.
    endif.
    initialization.
    titl = 'ENTER THE PURCHASE ORDER NUMBER'.
    Regards,
    Nagaraj

  • Loading flat idoc via report RSEINB00 into integration server fails

    Hi,
    we have PI/700.
    We get idocs (in flat format NOT XML) via filesystem from an external partner.
    Now I try to load these idocs with the report RSEINB00 into my integration server.
    My problem is, that the report says that the sender port + client(of the idoc control segment) is not a service in the integration directory.
    E.g.: SAPWR3 and client 550 (this WR3 is the system + client of the external partner who exports the idocs to filesystem).
    For testing I changed the idoc control segment and inserted an existing business system + a correct client (of our SAP-System) instead of the SAP-port used by the external partner.
    --> It worked!!!
    Do I have to enter the SAP-System of the external partner in my SLD?
    If yes - as a SAP-System (including client,...) or a third party system or...?
    Any ideas?
    Thanks for your help!
    Regards
    Wolfgang

    HI,
    Regd. Party config etc , you can refer this-
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b0b355ae-0501-0010-3b83-8f2bb566fa47
    /people/sravya.talanki2/blog/2005/08/17/outbound-idocs--work-around-using-party
    More -
    http://help.sap.com/saphelp_nw04/helpdata/en/81/104bb1fbab254c8644877c7f856bbf/content.htm
    <i>When I enter the sender-system of the external idocs into my SLD, do I have do insert it as a third party system or a SAP System?</i>
    >>SAP system.
    Hope this helps,
    Regards,
    Moorthy

  • Send companies thru IDOC

    Hi experts,
    I'd like to send companies created by OX02 transaction thru IDOC technology.
    Does someone know how to do that? I looked for a message type, however I didn't find anything regarding companies, closer thing was G/L Accounts.
    Regards,
    André

    use change pointers ....it will then transfer only changed data or newly created ones
    fot that you first have to activate the change pointers globally BD61 and then activate the change pointers for a specific message type and a specific field.BD50 ...so whenever ther is change to that field the data that has been changed will be recorded in BDCP table...
    you can also schedule report RBDMIDOC with a particular message type as variant which will read all the changed records.
    if there are multiplr changes during the day ....all of them would be recorded and would be sent together once RBDMIDOC runs...
    Edited by: Tarang Shah on Mar 27, 2009 1:56 PM

  • Java CAPS SAP IDoc OTD thru IDOC descriptive file needs any sap jars and dd

    Hi All,
    I am doing PoC in Java CAPS using SAP IDoc Descriptive file. As I know for creating SAP IDoc OTD thru it will need certail jar filr and ddls. But creating SAP IDoc ITD thru IDoc descriptive file also we need certain jar files and DLL.
    Please let me know on this.
    Thanks in advance.

    Yes, you will need all of the required SAP JCo jars and DLLs even though you are using the IDoc description file. This link might be useful to you - [Creating a SAP ALE OTDs Wizard|http://docs.sun.com/app/docs/doc/820-4380/dsgn_sap-ale-otd_t?a=view]

  • One of our user accounts no longer loads thru Mail

    For no reason I can ascertain, the Inbox is greyed out in Mail, and only one user (myself, the main user) is black and will load mail. This account works normally. However my husband's "mail only" sub-user account is greyed out, displays the "~" and will not load mail. I have tried to create a new acount for him but it is also greyed out. I have not changed any settings and I am on a network where this formerly worked just fine. As my account just renewed, I thought perhaps my husband's account had not been updated, but we can get his mail thru the web browser.
    G5 tower   Mac OS X (10.4.6)  

    Is this an email only account under your .Mac account?
    I have tried to create a new acount for him but it is also greyed out.
    In an email only account under your .Mac account, you tried to create another email only account or you tried deleting and recreating the email only account in Mail?
    At the Mail.app menu bar, go to Mailbox > Online Status.
    Is "Take the (name of this email only account) Online" available?
    If so, select it.

  • Opportunities Load  via IDOC in CRM

    Hi Guys
    I am trying to load opportunity via IDOCS. I am using the message type CRMXIF_ORDER_SAVE_M01.
    The only problem I am facing is to get a reference lead ID in the Opprtunity.
    In easy access the reference lead number is inputted on the details page tab of the opportunity. I am want to load 10,000 opportunities via idoc with each having a reference lead ID.
    I am not finding a relevant segment where in the above mentioned IDOC type where I can input the lead number. The Lead ID field name in Easy access is OBJECT_ID3.
    Please let me know how I can input the reference Lead ID in an opportunity using IDOCS?

    You could get a answer for your query faster in CRM forum.
    Regards,
    Rajesh Banka

  • Opportunities Load via IDOCS in CRM

    Hi Guys
    I am trying to load opportunity via IDOCS. I am using the message type CRMXIF_ORDER_SAVE_M01.
    The only problem I am facing is to get a reference lead ID in the Opprtunity.
    In easy access the reference lead number is inputted on the details page tab of the opportunity. I am want to load 10,000 opportunities via idoc with each having a reference lead ID.
    I am not finding a relevant segment where in the above mentioned IDOC type where I can input the lead number. The Lead ID field name in Easy access is OBJECT_ID3.
    Please let me know how I can input the reference Lead ID in an opportunity using IDOCS?

    You could get a answer for your query faster in CRM forum.
    Regards,
    Rajesh Banka

  • URGENT - create FI invoice thru idoc  IDOC_INPUT_INVOIC_FI

    Hi all,
    I got a problem while creating a FI invoice thru the IDOC IDOC_INPUT_INVOIC_FI .
    In the created FI invoice i need to populate some fields in the profitability segment ( like customer number... ) .
    My problem is I don't know where in the idoc i have to set the value .
    Can somebody help me ?
    Best regards.
    Bertrand.

    Hi,
    You can enter partner information in segment E1EDKA1
    of IDoc type INVOIC02. 
    Not sure how much of this you already know, but I figured it doesn't hurt to include the following example:
    Run transaction WE60, enter your IDoc type, and execute (F8).  This will give you a list of all the segments and the segment fields.  Expand the segment E1EDKA1 and then expand the sement fields.  The first field is PARVW (you will see on the screen that there are various allowed values listed for this field, e.g. 'AG' = Sold-to party).  The next field is PARTN in which you can enter the partner number (e.g. the Sold-to number).
    You can use the Find function (after expanding all the branches) to look for any other type of fields you need to populate.  Once you find the "business name" of a certain field within the segment documentation tree list, you will be able to see which IDoc segment the field belongs to.  This is the place in the IDoc that you will set the value. 
    If INVOIC02 is not the IDoc type you are using, this same search technique will work for any IDoc type.
    I hope this helps you out.
    Best Regards,
    James Gaddis

  • Data load Error-IDoc inflow source system

    Hi Experts,
    I am trying to Extract master data from ECC to BI Datasource.I have situation where the load failed and error says Idoc Inflow source system.
    I checked in the Source system where IDOC has a status 56 and says EDI: Partner profile not available.
    I have checked for the IDOC stuck but no.
    I have even processed IDOC manually BD87.even it says status 56.
    Please advise.
    Regards,
    Koka.

    Hi Narendra,
    First check it your Source system is fine.
    Right click on your source system and choose check.
    If there is a problem.Then choose the option Restore and replicate as well.
    The try to reload the data .
    IDOc problem can be rectidied by regenerating the idoc using the restore option.
    If the above steps fails then contact your basis team for help.
    Hope this helps.
    Regards,
    Harish

  • Opportunity Load Via IDOCS

    Hi Guys
    I am trying to load opportunity via IDOCS. I am using the message type CRMXIF_ORDER_SAVE_M01.
    The only problem I am facing is to get a reference lead ID in the Opprtunity.
    In easy access the reference lead number is inputted on the details page tab of the opportunity. I am want to load 10,000 opportunities via idoc with each having a reference lead ID.
    I am not finding a relevant segment where in the above mentioned IDOC type where I can input the lead number. The Lead ID field name in Easy access is OBJECT_ID3.
    Please let me know how I can input the reference Lead ID in an opportunity using IDOCS?

    You could get a answer for your query faster in CRM forum.
    Regards,
    Rajesh Banka

  • Calrification on Data load thru DTP

    Hi All,
    We are loading the data from DSO to cube thru DTP. Here the DSO has the complete history data. But i need to load only one year data to the cube. Thru filter option in DTP can I load this to cube or anyother possibilties are there? can you guide me in this.
    Thanks
    Sathiya

    Hi,
    There are tow ways in which you can achieve this.
    1. Through a filter in a DTP.
    2. Write a start routine in which delete all the data except current year.
    - Jaimin

  • Error while creating sales order thru IDoc

    Hi,
      While using FM IDOC_WRITE_AND_START_INBOUND, I am getting an error 'Customer not found with DUNS number from IDoc' and the application document is nor posted. I am passing valid customers in the ship to party and sold to party segments but still getting this error.
      Please advice.
    Regards,
    Rajesh

    Hi All,
    Can anybody give me some resolution for the above posted issue!
    Thanks in advance.
    Thanks,
    Deep.

Maybe you are looking for

  • Firefox doesn't work on certain websites

    I am continually running into sites that don't work well with Firefox. I tend to think it's because of the rapid-fire changes FF makes to itself, but nevertheless, it's annoying. The sites all tell me to "use Chrome" as a solution, and most times, th

  • Issue searching a content with a single quote in title using matches

    Hi, I'm trying to search a content which has a single quote in its title by using the following code: ISCSSearchAPI searchAPI = app.getUCPMAPI ().getActiveAPI ().getSearchAPI (); ISCSSearchQuery query = (ISCSSearchQuery)app.getUCPMAPI ().createObject

  • Blue Screen of Death on Sync

    I am experiencing an issue with Itunes where my computer (Windows Vista SP2) crashes to Blue Screen when syncing my iPod Touch or iPhone4.  It happens every time but not always at exactly the same time.  Though it is always during teh file sync (apps

  • RESTful Authentication to Service Bus for Windows Server - Multiple Scopes?

    We currently have a three-node farm set up and have tested authentication and sending/receiving messages to each node individually, with which we've had no issues.  However, we use NetScaler as a network load balancer, and once we configured NetScale

  • Return Material back from Vendor without PO

    We are having problems returning material back from a Vendor without a PO. We had sent some of our product to a Vendor to have them restack the pallets. Now we cannot bring the material back in without referecning the PO. (RGA) (VA01). We are allowed