Updating Quote Terms
This method enables you to update the expected start date and expected end date of the quote, along with its selling term. This method does the following:
- Updates Expected Start Date and Expected End Date for the Quote/Proposal object.
- Retrieves the finalized cart associated with the quote.
- Creates a new cart by checking out the finalized cart.
- Updates Expected Start Date & Expected End Date in the cart object. Note this is for the new Product Configuration cart object.
- Updates Start Date, End Date, and Selling Term on line item terms that have a valid start date, i.e. when the start date is not null.
- Selling Term may be set to null to clear out the existing selling term which triggers a recalculation of the selling term using the start and end dates. Alternatively, if start date and selling term are provided, the end date is automatically calculated.
- Updates the net price and total price for the cart.
- The ID of the new cart is returned to the caller.
- It is the caller's responsibility to finalize the cart.
The field QuoteLineItemColl, which is part of the Apttus_CPQApi.CPQ.UpdateQuoteTermRequestDO, can accept a list of quote line item sObjects which can hold the data to override one or more line items. For this the line items need to have the following fields populated:
- Start Date
- End Date
- Selling Term
- Derived Form
Line items that match the Derived From value gets overridden values from the Quote Line items. The remaining fields will default to values provided in the request object. A null value in the Start Date field in the request will prevent the values from defaulting to the line items from the request object.
API |
Signature |
---|---|
updateQuoteTerm |
webService static Apttus_CPQApi.CPQ.UpdateQuoteTermResponseDO updateQuoteTerm(Apttus_CPQApi.CPQ.UpdateQuoteTermRequestDO request) |
Parameters |
||
---|---|---|
Name |
Type |
Description |
request | Apttus_CPQApi.CPQ.UpdateQuoteTermRequestDO |
This is the request call made by the method. |
Request Data Object - Apttus_CPQApi.CPQ.UpdateQuoteTermRequestDO |
|||
---|---|---|---|
Field |
Type |
Required |
Description |
EndDate | Date |
No |
The expected end of the quote. |
LineItemColl | Apttus_CPQApi.CPQ.LineItemCollDO |
No |
The list of line items |
QuoteId | ID |
Yes |
The Id of the quote you want to change the dates and selling term for. |
QuoteLineItemCollDO | Apttus_CPQApi.CPQ.QuoteLineItemCollDO |
No |
The collection of Line items to be updated. |
ReCalcSellingTerm | Boolean |
No |
You can use this method enabled recalculating the selling term |
SellingTerm | Decimal |
No |
The selling term of the quote is typically measured in years, months, or days. |
StartDate | Date |
Yes |
The expected start date of the quote. |
Data Object - Apttus_CPQApi.CPQ.LineItemCollDO |
||
---|---|---|
Field |
Type |
Description |
LineItems | List |
The list of line items |
Data Object - Apttus_CPQApi.CPQ.QuoteLineItemCollDO |
||
---|---|---|
Field |
Type |
Description |
LineItems | List |
The list of line items |
Response Data Object - Apttus_CPQApi.CPQ.UpdateQuoteTermResponseDO |
||
---|---|---|
Field |
Type |
Description |
CartId | ID |
Id of the cart updated. |
Code Sample
The sample below enables you update the end date of a cart after the date of acceptance of the proposal. The auto-roll up end date is the sum of the proposal acceptance start date and selling term. When the recipient of the proposal accepts the quote and updates the status, invoke this API to update the start date and selling term of the products associated to the quote. In the sample below, the user enters the quote name in a search field and clicks Search. If a valid quote exists by the name, the quote is fetched. If the user clicks the update Quote Terms button, the API is invoked and the end date is updated.
The sample below enables you to update the start date and end date of a cart after the date of acceptance of the proposal. When the recipient of the proposal accepts the quote and updates the status, invoke this API to update the start date, end date and selling term of the products associated to the quote. In the sample below, the user enters the quote name in a search field and clicks Search. If a valid quote exists by the name, the quote is fetched. If the user clicks the update Quote Terms button, the API is invoked and the start date is updated. The validity i.e the selling term has to be updated on a pro-rata basis.
Integration Details
Use the following information in your integrations with CPQ Web Services API. Refer to Integrating Conga with External Systems for information on how to get started.