Last seen: Jul 15, 2024
Here is one soql: public with sharing class getRelatedQuotesDDSummaryLWC { @AuraEnabled(cacheable=true) public static List<SBQQ__Quote__c>...
Or instead, you could simply use the CPQ special field Product Total or Product Option Total to resolve this.
We had to use the Dynamic Bundles option to resolve this.
There are two Product Code fields on the Filter Field picklist, just choose the one with the space. Check this out: What's the problem here? | Salesfo...
You can pass a file name after your script name like below: npm run test:unit mycomponent.test.js
To retrieve a specific Apex class: sfdx force:source:retrieve -m ApexClass:MyApexClass Documentation: source Commands | Salesforce CLI Command Refer...
Apex heap size issue could be caused by apex code, visual force page and also in CPQ configurations page (which is a VF page). In my case issue was wi...
Check this out: Using Apex Variables in SOQL and SOSL Queries | Apex Developer Guide | Salesforce Developers Account A = new Account(Name='xxx'); i...
SELECT Id, Name, SBQQ__Account__c,SBQQ__Account__r.Name,SBQQ__Opportunity2__r.Name, SBQQ__Status__c, SBQQ__Primary__c, CurrencyIsoCode, ...