SRM PO failing to replicate to SAP backend in extended classic

Hi Friends,
Please can someone shed some light to this issue as the RZ20 log is not providing any answers!
We have created a multiline order and it has the status 'error in process'. For this reason the PO failed to replicate to SAP backend. The RZ20 log gives message:
PO 3000008888: No instance of object type PurchaseOrder has been created. External reference:
PurchOrder 3000008888: Document contains no items
PurchOrder 3000008888: Item 00003 does not exist
PO 3000008888: No instance of object type PurchaseOrder has been created. External reference:
PurchOrder 3000008888: Document contains no items
PurchOrder 3000008888: Item 00003 does not exist
Any help would be a appreciated.
Thanks again
Steve Walsh.

Hello Steve,
I guess error messages come from R/3.
Depending on your R/3 version, check by debugging in SRM functional modul driver (B46B_DPO_TRANSFER, B470_DPO_TRANSFER, etc.) what's happened with PO data between SRM and R/3.
Check also BAdI to modify backend data : maybe some wrong item data cleaning are done.
On the R/3 side, look for the where-used R/3 messages you have in your monitoring : you will be able to know exactly why you have those errors
Regards.
Laurent.

Similar Messages

  • Service SRM PO fail to replicate to SAP with error"Tax code Mand. for ERS"

    HI
    We are facing issue for posting Serviice PO with vendor enabled with ERS functionality.
    Service purchase orders with ERS flag and with complete tax detail fail to replicate to MM PO. Error found on XML on ECC interface : "Enter Tax code in case of Evaluated receipt settlement".
    We have compelete tax details on the XML which is not recognized. When we manually feed the details in dubug it allows to post the document.
    PO is created with account assigned service item.
    Have any one come across simialr situation.
    Regards
    Prashanth K Saralaya

    Hi Prashanth,
      Do you have tax code maintained in SRM PO. SRM PO is pushed to ERP using RFC Calls and not XML(in standard scenarios). I am wondering why XML is being checked in debug mode by you for a SRM PO to make it to ERP.
    May I have the background of your requirement..
    Regards
    Virender Singh

  • SRM 7 : Vendor record replication in backend with Extended Classic Scenario

    Hello,
    We are implementing SRM 7 with Extended Classic Scenario and Supplier Self-registration.
    Can you explain what is to be configured to get the new vendors replicated to the backend?
    Thanks in advance.

    Hi,
    It is possible to transfer suppliers to ERP system, if you use 'Supplier registration with ERP' scenario. After registration and acceptance, newly registered suppliers would appear on supplier monitor from where you can transfer them to backend system.
    Check the below link for more details:
    http://help.sap.com/saphelp_srm50/helpdata/en/cf/35074152aff323e10000000a155106/frameset.htm
    Regards,
    Sanjeev

  • SUS / no goods receipt doc to backend  in extended classic scenario?

    Hello
        have you any find  a solution for problem
        in SRM/SUS and goods receipt in extended classic scenario. Gr remains  only in SRM not going to backend...
    Brg Harri
    Message was edited by: Harri Harkonen
    Message was edited by: Harri Harkonen

    Hi Christophe,
    We also have this issue. Goods Receipt from SUS is created in SRM but is not posted in backend (we have implemented extended classic scenario).
    I tried to use the BBP_DOC_SAVE_BADI to created an idoc which posts the material document in backend system (using fm IDOC_GR_CREATE).
    The goods receipt is posted in backend this way.
    Unfortunately we are not able to cancel or make a return delivery on this GR.
    I am very interest in your FM. Could you please share this, or tell me what changes you made to the GR in SRM.
    Thanks in advance.
    Rgds,
    Martijn

  • Output from backend in extended classic

    Hi Experts,
    In extended classic scenario it is possible to sent the output from backend?
    Does anyone know have to activate this, and how to deactivate the output control from SRM.
    Proces as I want it:
    - Creates a shopping cart in SRM.
    - Creates a PO in SRM on behalf of the shopping cart, no output.
    - The PO from SRM is replicated to R/3.
    - The PO is sent to vendor fra R/3.
    Best regards
    Kim Oster

    yes franz is correct. we can do this from consulting note which he mentioned.
    PO Output messages for ECS PO's
    br
    muthu

  • SRM Fixed Text Mapped to ERP Purchase Order for Extended Classic

    We are switching from Classic to Extended Classic.
    We currently have "Contract Riders" which are fixed text that the users can select and the header level on the ERP purchase order. 
    We need to add this functionality to the SRM purchase order.  Unfortunatly the fix text on the SRM purchase order is only 30 in length.  Can we map the fixed text codes from the SRM purchase order to the ERP purchase order so that the full text on the ERP side is selected?
    Or is there a way to allow more than 30 characters for the fixed text in the SRM purchase order?
    Regards,
    -Paul

    Answered.

  • SRM PO replication to backend ECC (Extended Classic Scenario)

    I would like to have inputs on this scenario, as which BADI we need to use and what we need to do exactly to replicate PO from SRM 5.5 to ECC 6.0.
    Thanx and Regards

    Hi,
    just try out the following:
    If you activate the BAdi, make sure to take over all Import params into your Export params!
    Otherwise data may be lost!
    Here is an example:
    *-- data declaration
    Data:  wa_longext like line of ct_longtextt,
              wa_item like line of et_item,
              zw_index type sy-index,
              zw_counter type ec_counter.
    *-- take over all import data to exp params
    es_header = is_header.
    et_item[] = it_item[].
    et_partner[] = it_partner[].
    et_account [] = it_account[].
    et_orgdata[] = it_orgdata[].
    *-- Change data
    *--  modify given vendor longtexts (ITXT) for example with a standard text
    *-- for all positions
    clear zw_index.
    Loop at ct_longtext into wa_longtext.
    zw_index = zw_index + 1.
    if wa_longtext-tdid eq 'ITXT' ." Vendor Text
    wa_longtext-tdline = 'Here your Text'.
    modify ct_longtext from wa_longtext index zw_index.
    endif.
    endloop.
    *-- or if you would like to add a line of text to a position
    *-- loop over positions and read text for vendor text
    loop at et_item into wa_item.
    clear zw_counter.
    loop at ct_longtext into wa_longtext
    where  guid = wa_item-guid
    and     tdid = 'ITXT'
    and tdspras = '???'." -> your language (E= English, D= German...)
    endloop.
    *-- if position contains vendor texts already, you know the counter index
    *-- add 1 to counter to get the "new" index for your new line
    zw_counter = wa_longtext-counter + 1.
    wa_longtext-guid = wa_item-guid. "to combine the text with the SC position
    wa_longtext-tdid = 'ITXT'.
    wa_longtext-tdspras = '??'.
    wa_longtext-counter = zw_counter.
    wa_longtext-tdline = 'Your Text'.
    append wa_longtext to ct_longtext.
    endloop.
    This is just an example which I have coded right now.
    Hopefully without any syntax errors.
    Of course you have to adopt this coding to your requirements.
    Best regards
    Andreas

  • POR transferred into MM(Backend) system in Extended Classic Scenario

    I am working on standard EBP-SUS Extended Classic Scenario. We have SRM Server 7.0 SP9 
    As we are successfully send PO from EBP to SUS.
    Issue : On working to Purchase Order Response,i am getting POR sent by SUS to EBP but we are not getting it replicated to MM.
    Our Concerns about is it need extra configuration required or need to have apply some note to getting replicated POR in MM from EBP or have to configure some XI Scenario to replicate POR from SRM EBP to MM.
    As we know that Extended Classic Scenario supports till Purchase Order Response still we are not getting Purchase Order Response in MM.
    Please tell us, Provided Solution will  be really appreaciated.
    Thanks.
    Regards,
    Pawan Keshwani

    hi,
    Pls see the foll notes:
    Note 576349 - Terms of payment in the ECS
    Note 541934 - Modification note: Copying base date from T052
    Note 953999 - ECS: Terms of Payment values not in PO header
    <b>Note 940453 - Backend payment term data not updated in the extended PO
    Note 945018 - Incoterms data not transferred to the back end</b>
    BR,
    Disha.
    Pls reward points for useful answers.

  • Extended classic scenario - no backend PO created

    I try to activate the extended classic scenario. It's not activated in customizing, tried to do it only with BADI implementation for special material groups. We are able to create POs in SRM but transfer to backend doesn't work.
    I get following error messages in application monitor as backend application errors:
    No instance of object type PurchaseOrder has been created. External reference:  
    PO header data still faulty  
    Document number 100000093 not within defined inter val  
    What's going wrong here?
    Hubert

    Hello,
    Check if you have set up the customizing as below:                                                                               
    Extended classic scenario:                                                                               
    a) at SRM side:                                                                               
    - To assign the transaction type to the extended classic scenario you have to maintain the transaction type name (= the R/3 PO document type) to the attribute DP_PROC_TY (in contradiction to BSA in classic scenario) in PPOMA_BBP of the responsible Purchazing group.                                           
    - Create a number range for a local PO.                                                                
    - Assign the local PO number range as a internal numer range to the transaction type.                                                                               
    b) at R/3 side:                                                                               
    - Enter the Number Range (corresponding to the SRM number range PO) and flag it as an external number range (trx. OMH6 Number Range for Purchasing Documents)                                                                               
    - Maintain the document type corresponding to the SRM transaction type and assign the R/3 number range for POs as "NoRge Ext" (field V_T161-NUMKE) (trx. Document type within Purchase Order Customizing)                                                                               
    - Make sure that the SRM and R/3 number ranges match are exactly the same.
    Kind regards,
    Ricardo

  • MI Support for Non SAP Backend

    hi all,
    Theoritically,it is said, MI will support NON-SAP Backends.
    But in our <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/cc489997-0901-0010-b3a3-c27a7208e20a#q-5-9">FAQs</a> i find the following,
    <i>Can I use SAP Exchange Infrastructure for integrating MI with with non-SAP backends?
    No, this is currently not supported (see release restriction note 717510).</i>
    <b>If we are using SAP Business Connector, can we integrate non-sap Backend?</b>
    So, As a consultant, what should our stand be if a client asks if we can integrate Non-SAP backends with MI 2.5?
    Regards
    Ak.

    Hi Arunkumar,
    Sorry, I cant make a closed statement that SAP does not support integration of MI with non SAP backend systems. The reason is this is a restriction because of some failed tests & also another reason is we are currently working on taking this restriction out.
    So we will surely get back to u with a positive response very soon.
    Regards,
    Nameeta

  • ALD Failed to conect to Sap Business One

    Hi, i install a client in my PC, so when i log in in SBO,so SBO tells me that i need install ALD "its ok, i need it", the install runs rigth, and now i have ALD in my client, i close SBO and openin again.
    Therefore in the init, before i can´t make anything, send me a system message error "Resource error", i click ok, inmediatly another system message "initialization failed" click ok, then another error out of SBO, header "SAP Business One Outlook Advanced Layout Designer", body "Failed to conect to SAP Business One"
    After click Ok, in the last message, i can work with SBO but i can not open ALD, no even print preferences " the 5° check box".
    i did everything i think, reinstall, reg scan, a new DB in sap, nothing works.
    so i someone can help me, thaks to everyone.

    hi Sergio Guillerm... ,
    Check this link with subject Resource error,solution given by Rakesh pati.
    Resource error

  • Getting an error in KPI Modeler as "{"customMessage":"failed to detect the sap language of the current session language","status":500}"

    Hi Experts,
    We have installed UISKPI01 in SAP NetWeaver Gateway System for Fiori Analytical Apps (KPI modeler is necessary to model the KPI) but while trying to create and Save the Group, we are Getting an error in KPI Modeler as "{"customMessage":"failed to detect the sap language of the current session language","status":500}". Similarly, when we are trying to edit the existing KPI template and assigning the Variants and Evaluations, we are facing the same error as failed to detect the sap language of the current session language","status":500.
    Any idea on above error?
    Thanking you,
    ~ Mahendra

    Hello Mahendra,
    Check if you have entries in the T002 table of SAP_SSB schema.
    If not follow the steps mentioned in the admin guide of SAP Smart business to populate data.
    This should resolve this issue.
    Note: My assumption is that, you are accessing the KPI modeler in English Language.
    Thanks,
    Debasish

  • SRM 7.0 Contract not replicating to backend system

    Hi,
    We have created CCTR global outline agreement in SRM 7.0 extended classic scenario. the contract is not replicating into backend. we have maintained necessary message types BLAORD, COND_A in ECC system as inbound parameters for partner type as SRM system.
    when i looked rz20, i am seeing the message as "back end data could not be read"
    When I executed function module B46B_CTR_TRANSFER I am getting an error, RFC destination could not be found.
    please let me know what we are missing.
    thanks
    vem

    "Hi,
    I guess your SRM70 connected to backend ECC with EHP4 pack applied. If so, Central contract will not use IDocs instead it works on new eSOA technology where Xi/PI need to be set up to process service calls.
    If you are not using EHp 4 pack on your ECC, then SRM70 use IDocs to distribute contracts to backend.
    Thanks,
    Jagadish
    Hi jagdish,
    we are on SRM 7.0 and ENHPack 4.0 and as you said its picking up the eSOA route to distribute contracts in backend ECC system.
    I would like to know how can we  this programmatically ( BADI / Enhancement points)  and force system to pick the ALE/IDOC route ???
    Do you know any BADI / Enhancement points where we can implement this ???

  • PDF generated in SAP backend to be stored in Cloud Proxy object

    Dear Colleagues,
    We generate the pdf file in SAP backend system and send the pdf as an attachment to email address. Along with this we also want to automatically have this pdf file stored in Cloud Proxy object. So that users can access these files in Cloud portal when needed.
    If anyone has expertise on this topic, please share or suggest the solution.
    Thanks,
    Arun

    Hi Arun,
    Would you like to achieve an automatic way to store the document in cloud portal? Can you elaborate a bit more?
    Check out this blog demoing the documents repository capabilities and read the official documentation here.
    I believe the public folder can fit for your needs.
    Regards,
    Eliel.
    Cloud Portal Development.

  • How to insert Adobe Form Data in the SAP backend?

    Hi there,
    I am very new to Adobe Forms. I am supposed to come up with a working scenario of inserting few form fields into the SAP backend. Is this done through a BAPI call? Or is there any other way for this to achieve?
    I have downloaded trial version of Adobe LifeCycle Designer. But I don't know how to integrate this with the SAP system. Is there anything else that I need to install in my system?
    Is there a document on how to configure all the installations for both local machine and the server (if any)?
    Please help.....
    [I went through the forum for this, but I did not get anything]
    Warm regards,
    Deepak

    hi,
    in the livecycle designer under libary tab u have webdynpro tab--->choose submit to sap button and place it in the adobe form ur designing. u can use this button to trigger the code that u have written in webdynpro java.
    for eg if u have
    a value node details
    and under that two value attr fname,lname
    import the model (Insertdata---it has two import param fname and lname)u need for updating the data to r3 system.
    in the ctrller have a method submit.Here write the code to insert fname and lname into the db.
    IPrivateMyForm.IDetailsElement elem = wdContext.nodeDetails().currentDetailsElement();
    Insertdata_Input input = new Insertdata_Input();
    wdContext.nodeInsertdata_Input().bind(input);
    input.setFname(elem.getFname());
    input.setLname(elem.getLname());
    try
    wdContext.currentInsertdata_InputElement().modelObject().execute();
    wdContext.nodeOutput().invalidate();
    catch (Exception ex)
    { ex.printStackTrace();}
    ul bind details to the datasource.
    when u edit ur interactive ui element these attr(fname and lname) vl be visible under dataview tab u can drag and drop them to the form
    now add submit to sap button in ur form.
    this button correspond to the onactionSubmit dat u have written in the ctrller.
    so wen u click this the data vl be inserted
    Regards
    Jay

Maybe you are looking for

  • External Display Resolution Issue...

    I have a Mid-2012 MPB running Mavericks. Recently, I've tried connecting 2 different external display's to the MBP via an Apple Thunderbolt to VGA adaptor. I can't get the resolution of the connected displays to go above 800 x 600, and it looks awful

  • How do I find and configure the new 'global network proxy' feature in iOS 6?

    The 'global network proxy' is listed as a new feature in iOS 6 but is not explained anywhere. I can't see how to set it up on the phone either. It sounds like it might be the ideal feature I'm looking for. That is, when I connect to a random new open

  • I had to reinstall CS4 and now have error messages when opening bridge and photoshop

    The error message is "The specified module could not be found. C:\Program Files (x86)\Common Files\Adobe\Adobe Version Cue CS4\Client\4.0.1\Version Cue.DLL

  • Embed a font in a PDF(generated by Word 2013) using Adobe Acrobat XI

    Hi all, I wrote my thesis in Word 2013 using the LaTex font "LM Roman 12" that is an Open Type font not restricted (it results "Editable"). Although it is marked as opentype, word doesn't embed it into the exported pdf and I guess that is becouse the

  • SSL authentication

    Hello I am configuring ssl authentication ( document oracle support 736510.1) But when doing tnsping from client side i have an tns-12560 [oracle@testrac3 admin]$ tnsping TEST TNS Ping Utility for Linux: Version 11.2.0.3.0 - Production on 17-JUN-2013