CWL
@cwl
Admin
Member
Joined: Aug 6, 2013
Last seen: Jul 15, 2024
Issues: 103 / Replies: 102
Reply
RE: Salesforce cpq quote pdf attachment not generating

Fixed it. Go to installed packages and click on configure next to salesforce cpq package, then make sure attachment target is selected as Quote. Now...

3 years ago
Forum
Topic
Reply
RE: show or hide a section in aura component

Figured it out. You can't use <aura:if isTrue="{! !empty(v.ListCivilWork)}"> As you can only check if the list is empty or not empty. You ca...

3 years ago
Forum
Topic
Forum
Replies: 2
Views: 261
Reply
RE: How to abort jobs in salesforce

In setup, type 'apex jobs' in quick find box and select apex jobs. Click Abort next to the job you want to terminate.

3 years ago
Forum
Topic
Forum
Replies: 2
Views: 396
Reply
RE: queueable apex with more than 100 callouts and more than 50 future method calls

Came across this post: Queuable apex basics - Salesforce Stack Exchange Also check out: Control Processes with Queueable Apex Unit | Salesforce Trai...

3 years ago
Forum
Reply
RE: Validation rule to check if the owner of a recoded is active or inactive

Solution is to create a Boolean formula field OwnerIsActive__c with the formula Owner:User.IsActive And use Priorvalue() function as below in the va...

3 years ago
Forum
Reply
RE: find weekday in soql

Use WHERE DAY_IN_WEEK(CreatedDate) = 2 // 2 is Monday, 7 is Saturday DAY_IN_WEEK is a date function in SOQL, but it doesn't exist in Apex. ...

3 years ago
Forum
Topic
Forum
Replies: 3
Views: 840
Reply
RE: unhandled fault error in flow - query failed

It's because of large number of records in the Object. It has 1.5 million records. If your object has more than 200k records it needs indexing. Che...

3 years ago
Forum
Topic
Forum
Replies: 2
Views: 454
Reply
RE: Salesforce api error - Provided external ID field does not exist or is not accessible

Its because the field CODE__c is not marked as external id. Make sure the external id check box is checked for that field and then the API will work. ...

3 years ago
Forum
Page 6 / 14