Using CRM API to insert/update product "List Price" and "Quantity" does not auto-fill related pricing information
When updating or inserting only certain parts of pricing information (list price, quantity) of a product, how do you force the backend to auto-insert relevant "Amount" and "Total"/"Grand Total"?
Example of my quote insertion:
- ... <Quotes>
- <row no="1">
- ...
- <FL val="Product Details">
- <product no="1">
- <FL val="Product Id">123456789</FL>
- <FL val="Quantity">1.0</FL>
- <FL val="List Price">123.0</FL>
- </product>
- </FL>
- ...
- </row>
- </Quotes>
Thank you for your help!