Solution Categories in Salesforce
1. Go to Setup --> Build --> Customize --> Solutions --> Solution Categories. 2. Add a Solution Category by clicking "Add Solution Category". 3. Save the Solution Category. 4. Go ....
1. Go to Setup --> Build --> Customize --> Solutions --> Solution Categories. 2. Add a Solution Category by clicking "Add Solution Category". 3. Save the Solution Category. 4. Go ....
When you face Failed to login: SERVER_UNAVAILABLE issue, kindly check https://trust.salesforce.com and check your server status. This issue usually is from Salesforce. It's a temporary issue and it will be normal ....
Sample Code: Visualforce page: <apex:page id="pg" controller="Sample"> <apex:actionstatus id="counterStatus"> <apex:facet name="start"> <div class="waitingSearchDiv" id="el_loading" style="background-color: #fbfbfb; height:100%;opacity:0.65;width:100%;"> <div ....
If you face Change Ownership causing Insufficient privileges issue in Salesforce, check whether Transfer Records permission is enabled for the profile. 1. Go to Setup --> Administer --> Manage Users ....
To clear code coverage results in all Apex classes, Go to Developer Console --> Test --> Clear Test Data. This is used to clear code coverage results in all Apex ....
Sample Code: Visualforce Page: <apex:page id="pg"> <apex:actionstatus id="counterStatus"> <apex:facet name="start"> <div class="waitingSearchDiv" id="el_loading" style="background-color: #fbfbfb; height:100%;opacity:0.65;width:100%;"> <div class="waitingHolder" ....
If you face, "Missing redirect_uri parameter error from Facebook" issue, add redirect_uri parameter to the end point URL. The redirect_uri should be the callback URL. Get the callback URL and ....
Text (Encrypted) should be used to create Encrypted field in Salesforce. Select Mask Type and Mask Character. Implementation Notes 1. In Salesforce, the Encrypted fields are encrypted with 128-bit master ....
When importing custom objects, solutions, or person accounts, you can use external IDs to prevent duplicate records from being created as a result of the import operation. An external ID ....
The standard object can maintain only Lookup relationship. The standard object can be child to other object (standard or custom) only through Lookup relationship not via Master Detail relationship. Cheers!!!