Last seen: Jan 22, 2025
Even if you have done everything as per this Create a Send Email Quick Action for Cases (salesforce.com) and you still not able to see the Email quick...
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...
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...
In setup, type 'apex jobs' in quick find box and select apex jobs. Click Abort next to the job you want to terminate.
Came across this post: Queuable apex basics - Salesforce Stack Exchange Also check out: Control Processes with Queueable Apex Unit | Salesforce Trai...
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...
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. ...
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...