CRM and CX Blogs by SAP
Stay up-to-date on the latest developments and product news about intelligent customer experience and CRM technologies through blog posts from SAP experts.
cancel
Showing results for 
Search instead for 
Did you mean: 
guenter_wilmer
Employee
Employee

If external pricing is used, the sales quote printing of price elements using the standard output forms need to be adapted for Net Price and Net Value printing. The SAP form template SalesQuote (and SalesQuoteDemo) are optimized for quotes using internal pricing.

In the quote form output message, the message node item PriceAndTax contains elements NetAmount/NetPrice (Net Value) and AdjustedNetAmount/AdjustedNetPrice (Adjusted Net Value), for example:

<Item>

      <PriceAndTax>

<NetAmount currencyCode=" ">0.0</NetAmount>

<NetPrice>

<Amount currencyCode=" ">0.0</Amount>

<BaseQuantity>0.0</BaseQuantity>

<BaseQuantityMeasureUnitName/>

</NetPrice>

<AdjustedNetAmount currencyCode="EUR">1602.00</AdjustedNetAmount>

<AdjustedNetPrice>

<Amount currencyCode="EUR">80.10</Amount>

<BaseQuantity unitCode="EA">1.0</BaseQuantity>

<BaseQuantityTypeCode>EA</BaseQuantityTypeCode>

<BaseQuantityMeasureUnitName/>

</AdjustedNetPrice>

</PriceAndTax>

</Item>

For sales quotes using internal pricing, the NetAmount and NetPrice are populated in the output message. For quotes using external pricing, the AdjustedNetAmount and AdjustedNetPrice are populated in the output message. The difference between Adjusted Net Values and Net Values is that the Adjusted Net Values includes the header price conditions (such as overall discounts or overall surcharges) into the net price calculation whereas the Net Value only considers item price conditions.

If the standard SAP form templates are used for a quote with external pricing, the NetAmount/NetPrice on the item level will be printed with zero (0). To solve this issue, change the binding to AdjustedNetAmount and AdjustedNetPrice. This workaround is OK for some use cases, however, it may lead to confusion if not all relevant price conditions are part of the printout and as a result, the printed Net Price and Net Value cannot be derived directly from the printed price conditions.

Note: For quotes using external pricing, the information which price elements should be printed, originates directly from the customizing of the external SAP ERP or SAP CRM system.


9 Comments