Salesforce Certified Platform Developer I – Summer ’16 Release Exam 1. Which action should be taken to allow an external object to be searchable via SOQL? A. Enable the βIs …
Sakthivel Madesh
Sakthivel Madesh
3x Salesforce MVP | Platform Champion | 22x Salesforce Certified | MuleSoft Certified | All Star Ranger | TechForce Services | Sydney | Australia
-
- APEXSALESFORCESalesforce ConfigurationSalesforce CustomizationSalesforce Interview QuestionsSalesforce.com
How to Convert 18 Digit Id to 15 Digit Id using Apex Class?
How to Convert 18 Digit Id to 15 Digit Id using Apex Class? Example1: convert the Id to a String and using substring(startIndex, endIndex) its possible to convert from 18 …
-
How to change date formats using Apex Class? For Example 1: 2017-01-24 to change the date format to be in DD.MM.YYYY Below example should work if you can use a …
- APEXSALESFORCESalesforce CustomizationSalesforce.comVisualforce
How to set the default Account Owner Value in Visualforce using Apex Class?
How to set the default Account Owner Value in Visualforce using Apex Class? If you only want this defaulting to happen when the Visualforce page is used you can use …
- DeploymentForce.comSALESFORCESalesforce CustomizationSalesforce.com
How to Delete the Apex Triggers and Apex Classes from Production Salesforce Org?
How to Delete the Apex Triggers and Apex Classes from Production Salesforce Org? Follow the below steps to delete the Apex Triggers and Apex Classes to Production Salesforce Org Step1: …
- APEXSALESFORCESalesforce CustomizationSalesforce.com
How to convert DateTime to UTC time using Apex Class?
How to convert DateTime to UTC time using Apex Class? Difference Between GMT and UTC: The Difference Between GMT and UTC. Greenwich Mean Time (GMT) is often interchanged or confused …
- APEXSALESFORCESalesforce CustomizationSalesforce.comVisual ForceVisualforce
How to access custom labels dynamically in visualforce page?
How to access custom labels dynamically in visualforce page? No, you can’t reference labels dynamically in apex. However, you can reference them dynamically from visualforce so you can put them …
- Data StructureDATABASE
Difference between DML (Data Manipulation Language) and DDL (Data Definition Language)
Difference between DML (Data Manipulation Language) and DDL (Data Definition Language) DML (Data Manipulation Language) and DDL (Data Definition Language) Subsets of SQL commands: DML (Data Manipulation Language) is the …
- JAVASCRIPTSALESFORCESalesforce CustomizationSalesforce.com
How to get the url parameter values in Salesforce Custom Button using JavaScript?
How to get the url parameter values in Salesforce Custom Button using JavaScript? its possible to using the pure Javascript itself: Generic Method: function getParameterByName(name, url) { if (!url) { …
- APEXSALESFORCESalesforce ConfigurationSalesforce.comSOQLSOSLTrigger
How to find the current records RecordType Name in Apex Trigger
How to find the current records RecordType Name in Apex Trigger In Apex Trigger, we can’t able to retrive the RecordType Name from Trigger context. but its possible with the …