Is anyone encounter this similar error: SBQQ.OpportunityBefore: System.LimitException: SBQQ:Too many SOQL queries: 101 when trying to update Quote?
We are trying to update signed date from Quote and have process builder to update Stage = Closed Won and Close Date = Signed Date from Quote under Opportunity. However, encounter this error message from process builder and we are not able to save the record from Quote.
4 answers
All DML operations in the same transaction count toward the governor limit of 100 operations. This includes custom triggers, processes, and CPQ's own logic.
Do you have custom code/triggers running in that transaction that needs to be bulkified? Could you be running into an infinite loop scenario whereby updating the status and close date is triggering more operations?