cancel
Showing results for 
Search instead for 
Did you mean: 

Freight Calculation | ManageSalesOrderIn

Former Member
0 Kudos

Hi Experts,

Please let me know if you have experienced similar requirement and if there is a solution for the below;

Background:

I am using ManageSalesOrderIn service to create a new sales order in ByDesign.

I am able to do so.

Requirement:

The requirement is to create a sales order without the freight charges/ calculation.

Problem:
Is there any set of attributes in ManageSalesOrderIn which can allow creation of sales order without freight calculation? May be a flag/ indicator.

Thanks.

Dharmaraj

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi All,

For the one's who may face similar requirement.

PriceAndTaxCalculation cannot be created but can only be modified. If you want to change the ‘Discount’ or ‘Freight’ charge, you must create the order first, and then make a second

webservice request to update the sales order with the pricing information that is to be changed.

While updating the price information/ freight details you would need to send the UUID.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:glob="http://sap.com/xi/SAPGlobal20/Global">

   <soapenv:Header/>

   <soapenv:Body>

      <glob:SalesOrderBundleMaintainRequest_sync>

         <SalesOrder>

            <ID>43126</ID>

            <PriceAndTaxCalculation>

               <PriceComponent >

                  <TypeCode>7PR8</TypeCode>

                  <Rate>

                     <DecimalValue>9990</DecimalValue>

                  </Rate>

               </PriceComponent>

            </PriceAndTaxCalculation>

         </SalesOrder>

      </glob:SalesOrderBundleMaintainRequest_sync>

   </soapenv:Body>

</soapenv:Envelope>

Hope this helps

Answers (0)