Salesforce Report List Using XML Format We can get the list of reports from Report Standard Object using SOQL like below: SELECT Id, FolderName, Name, Description, DeveloperName FROM Report Also …
Sakthivel Madesh
Sakthivel Madesh
3x Salesforce MVP | Platform Champion | 22x Salesforce Certified | MuleSoft Certified | All Star Ranger | TechForce Services | Sydney | Australia
-
-
Difference Between Managed Packages and Unmanaged Packages in Salesforce Appexchange There are 3 main differents for Managed Packages vs Unmanaged Packages in Salesforce Customization Upgrades Org Limits Attribute Managed Packages …
-
Record Level Access in Salesforce You can control salesforce record level access in four ways: Org-wide defaults Role hierarchies Sharing rules Manual sharing Org-wide defaults specify the default level of access users …
- SALESFORCETrailheadValidation Rule
Salesforce Trailhead Challenge: Create a validation rule to check that a contact is in the zip code of its account
Salesforce Trailhead Challenge: Create a validation rule to check that a contact is in the zip code of its account Salesforce Trailhead Challenge Create a validation rule to check that …
-
Salesforce Platform App Builder Release Exam – Summer 18 Which feature can an App Builder use to get an industry certification number for an account based on its …
-
Retrieve Unfiled Public Email Templates Using Salesforce Package.Xml For retrieving and deploying EmailTemplate then folder name is mandatory. Example: to retrieve Salesforce report from Unfiled Public Email Template folder, then …
-
Retrieve Activity Custom Fields using Salesforce Package.xml In Salesforce Acitivity contains two topcis. One for Task and another for Events. if you try to retrieve Task fields (Standard fields of …
-
Salesforce Marketing Cloud Email Specialist Spring ’18 Release A customer wants to create an automation that runs a SQL Query then sends an email to the resulting audience. Which type …
-
How to deploy salesforce custom button using Apache ANT tool? Package.xml file to retrieve and deploy using ANT or Workbench salesforce deployment <?xml version=”1.0″ encoding=”utf-8″ standalone=”yes”?> <Package xmlns=”http://soap.sforce.com/2006/04/metadata”> <types> <members>Case.SendEmail</members> …
-
Salesforce Package.xml possible type, name tag and members format Type Name Tag Member format Class <name>ApexClass</name> <members>ControllerAPIName</members> Component <name>ApexComponent</name> <members>VFComponentAPIName</members> Page <name>ApexPage</name> <members>VFPageAPIName</members> Trigger <name>ApexTrigger</name> <members>CaseTrigger</members> Approval Process <name>ApprovalProcess</name> <members>ObjectAPIName.Approval_Process_Name</members> …