function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Manjunath S 75Manjunath S 75 

Update on Quote on First navigation to EditQuoteLines Page

I have noticed that the Saelsforce CPQ package does an update on the parent quote record on the first navigation to EditQuoteLines page.

Create a quote and let all the AfterInsert logic fire. Keep checking the LastModifiedDate for the record.

Once all the After events have fired, and you see a consistent LastModifiedDate, navigate to add Line Items to the quote via the EditQuoteLines page.

Even without adding a product or making any calculate action (thereby triggering any custom scripts), you will notice that the LastModifiedDate changes.

This is seen on a VFRemoting log with a log line that reads:

DML_BEGIN|[620]|Op:Update|Type:SBQQ__Quote__c|Rows:1

This is the only DML I see for this transaction.

Has this been noticed by anyone? What field is getting updated here?