cancel
Showing results for 
Search instead for 
Did you mean: 

Notify Opportunity or Sales Quote of Follow Up Document from SAP Business Suite

dhruv_mehta
Active Contributor
0 Kudos
752

Dear Integration experts,

We are trying to link S4 Order to C4C Quote and hence we are following the process.

And by standard in integration the service which is being used is customerquoteprocessingupdati1, Can any one help me with a sample payload file!

Since i tried with a lot of time but some how i am not getting any sucess!

Kindly help.

BR

Dhruvin

Accepted Solutions (1)

Accepted Solutions (1)

dhruv_mehta
Active Contributor
0 Kudos

Hey naveen.kumar.mallenahalli.p

Good to hear from you.

I actually solved this mapping 😉 thanks for the best practice link though.

<glob:SalesOrderMassNotification xmlns:glob="http://sap.com/xi/SAPGlobal20/Global">
  <MessageHeader>
    <ID>0000000001604310</ID>
    <CreationDateTime>2020-08-11T21:44:08Z</CreationDateTime>
    <SenderParty>
      <InternalID schemeAgencyID="310" schemeID="LocalSystemID">SAP</InternalID>
    </SenderParty>
    <RecipientParty>
      <InternalID schemeAgencyID="310" schemeID="LocalSystemID">0Mxxxx</InternalID>
    </RecipientParty>
  </MessageHeader>
  <SalesOrderNotification>
    <MessageHeader>
      <ID>0000000001604310</ID>
    </MessageHeader>
    <SalesOrder businessTransactionDocumentReferenceListCompleteTransmissionIndicator="false" itemListCompleteTransmissionIndicator="false">
      <ID schemeID="SAP">204</ID> //<-S4 Order ID
      <TypeCode>114</TypeCode>
      <BusinessTransactionDocumentReference actionCode="04">
        <ID>66012</ID> // <- C4C Quote Id
        <TypeCode>30</TypeCode>
      </BusinessTransactionDocumentReference>
    </SalesOrder>
  </SalesOrderNotification>
</glob:SalesOrderMassNotification>

Nevertheless thanks for the feedback.

BR

Dhruvin

Answers (3)

Answers (3)

Naveen_MP
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Dhruvin,

Please refer SAP Best practice guide 1VP https://rapid.sap.com/bp/#/browse/scopeitems/1VP. It includes the external pricing process as well as the external follow up document process.

Best regards,

Naveen

dhruv_mehta
Active Contributor
0 Kudos

Dear Experts and Moderators,

Can we have a document like the one for external pricing on overall Quote to Order process?

Because i am not able ton understand the payload of the WSDL of customerquoteprocessingupdati1.


Where do we pass the Quote ID in the payload?

BR

Dhruin

dhruv_mehta
Active Contributor
0 Kudos
payload : which is not working

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:glob="http://sap.com/xi/SAPGlobal20/Global">
   <soap:Header/>
   <soap:Body>
      <glob:SalesOrderMassNotification>
         <MessageHeader>


            <ID>0000000000785575</ID>
            <SenderBusinessSystemID>TS4CLNT600</SenderBusinessSystemID>
            <RecipientBusinessSystemID>0001002216</RecipientBusinessSystemID>
            
            <SenderParty>
	
               <InternalID schemeID="LocalSystemID" schemeAgencyID="310">TS4CLNT600</InternalID>
            </SenderParty>
    
            <RecipientParty>
               <InternalID schemeID="LocalSystemID" schemeAgencyID="310">0001002216</InternalID>
            </RecipientParty>


         </MessageHeader>
         <!--1 or more repetitions:-->
         <SalesOrderNotification>
            <MessageHeader>
               <ID>0000000000785575</ID>
            </MessageHeader>
            	
            <SalesOrder itemListCompleteTransmissionIndicator="false" businessTransactionDocumentReferenceListCompleteTransmissionIndicator="false">
               <ID schemeID="TS4CLNT600">2843</ID>
               <TypeCode>114</TypeCode>
 
               <BusinessTransactionDocumentReference actionCode="04">
                <!--  <ID schemeID="?" schemeAgencyID="?" schemeAgencySchemeAgencyID="?">?</ID>
 -->
                  <ID schemeID="TS4CLNT600">2843</ID>
                  <TypeCode>30</TypeCode>
               </BusinessTransactionDocumentReference>


            </SalesOrder>
         </SalesOrderNotification>
      </glob:SalesOrderMassNotification>
   </soap:Body>
</soap:Envelope>