Shield Platform Encryption in Salesforce
Shield Platform Encryption gives your data a whole new layer of security while preserving critical platform functionality. It enables you to encrypt sensitive data at rest, and not just when ....
Shield Platform Encryption gives your data a whole new layer of security while preserving critical platform functionality. It enables you to encrypt sensitive data at rest, and not just when ....
To fix "ReferenceError:key is not defined" Salesforce Lightning issue, declare the variable inside the for loop. Check the below example. Sample Code: ....
We get "Permission Import Personal Contacts depends on permission(s): Create Account, Create Contact, Edit Account, Edit Contact" Salesforce Exception when try to deploy/move Account or Contact object Profile permissions. To ....
CreatedDate and LastModifiedDate fields are date time fields. These two field values will be same when create a record. If the record is modified, it will not be same since ....
If you face "Failed to save undefined: Cannot remove design attributes when the component implements a Lightning Page interface.: Source" issue, do the following 1. Remove implements attribute from the ....
Sample code: Lightning Component: <aura:component > <ui:inputRadio text="Sample1" label="Sample 1" name="Role" change="{!c.onGroup}"/><br/> <ui:inputRadio text="Sample2" label="Sample 2" name="Role" change="{!c.onGroup}"/><br/> <ui:inputRadio text="Sample3" label="Sample 3" name="Role" change="{!c.onGroup}"/><br/> ....
The Opportunity Record Type selected is the default for the converter profile. 1. Go to Profiles. 2. Select the Profile. 3. Select Object Settings. 4. Select Opportunity Object. 5. Click ....
Sample Code: String strObject = 'Account'; String rtName = 'Marketing'; Schema.DescribeSObjectResult d = getDescribSObject(strObject); ....
When you face System.QueryException: unexpected token: 's' issue, use String.escapeSingleQuotes() method to avoid this exception. Sample SOQL: String SOQL = 'SELECT Id, Name, ( SELECT Id, Name FROM ....
If you face Failed to save undefined: descriptor is null, please set type attribute. Sample Code: <aura:attribute name="functionalrole" type="String"/> Cheers!!!