Last seen: Jul 15, 2024
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...
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. ...