Blogs
-
Add Salesforce Lightning Design System in Visualforce Page
I know it’s a pretty old thread, but still would like to add: Example:
-
Variations of Deletion behaviour in Salesforce and Rollback option
1. If a child record (like a Contact or Opportunity) is deleted and the parent record is subsequently deleted (Like the Account), the child record is permanently deleted. Even if the parent record is undeleted, the child record cannot be recovered, but if the child record is undeleted first this won’t happen. 2. When…
-
How to find inline links/images in Salesforce knowledge using apex
We often get requirement to move articles/Knowledge from any platform to Salesforce but somehow we miss inline links to update. This script is just a quick way to find such affected articles: String artIds = ”;for(Knowledge__kav k : [SELECT ArticleBody__c FROM Knowledge__kav WHERE Language=’en_US’ AND PublishStatus=’Draft’]){ if(k.Answer__c!= null && k.ArticleBody__c.containsIgnoreCase(‘help.company.com’)){ //system.debug(k.Id); …