CWL
@cwl
Admin
Member
Joined: Aug 6, 2013
Last seen: Jul 15, 2024
Issues: 103 / Replies: 102
Reply
RE: soql test class

Here is one soql: public with sharing class getRelatedQuotesDDSummaryLWC { @AuraEnabled(cacheable=true) public static List<SBQQ__Quote__c>...

2 years ago
Forum
Topic
2 years ago
Forum
Replies: 2
Views: 1028
Reply
RE: rolling up values on quote line editor in salesforce cpq

Or instead, you could simply use the CPQ special field Product Total or Product Option Total to resolve this.

2 years ago
Forum
Reply
RE: Apex heap size issue

We had to use the Dynamic Bundles option to resolve this.

2 years ago
Forum
Reply
RE: CPQ Trailhead challenge error: We can’t find a summary variable named “USB Sum” that has the correct field values.

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...

2 years ago
Forum
Reply
RE: How to run a single test for Lightning Web Component

You can pass a file name after your script name like below: npm run test:unit mycomponent.test.js

2 years ago
Forum
Topic
Reply
RE: how to download / retrieve a missing / single from from salesforce org to vs code

To retrieve a specific Apex class: sfdx force:source:retrieve -m ApexClass:MyApexClass Documentation: source Commands | Salesforce CLI Command Refer...

2 years ago
Forum
Reply
RE: Apex heap size issue

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...

2 years ago
Forum
Topic
Forum
Replies: 3
Views: 340
Reply
RE: Using Apex Variables / Bind Variables in SOQL Queries

Check this out: Using Apex Variables in SOQL and SOSL Queries | Apex Developer Guide | Salesforce Developers Account A = new Account(Name='xxx'); i...

2 years ago
Forum
Topic
Reply
RE: SOQL to fetch Account Name, Opportunity Name along with SBQQ__Quote__c fields

SELECT Id, Name, SBQQ__Account__c,SBQQ__Account__r.Name,SBQQ__Opportunity2__r.Name, SBQQ__Status__c, SBQQ__Primary__c, CurrencyIsoCode, ...

2 years ago
Forum
Page 2 / 14