How to detect my running Browser using Javascript? Using following Javascript code, we can detect the Browsers & Browsers Version, like either running the current url is Google Chrome or …
Sakthivel Madesh
Sakthivel Madesh
3x Salesforce MVP | Platform Champion | 22x Salesforce Certified | MuleSoft Certified | All Star Ranger | TechForce Services | Sydney | Australia
-
- CertificationForce.comSALESFORCESalesforce CertificationSalesforce.com
How to vertify the Salesforce.com Certification
How to vertify the Salesforce.com Certification Salesforce.com recently provided the option to check the certifications either the particular person have or not using the two methods of verification 1) Full …
- APEXSALESFORCESalesforce CustomizationSalesforce.comSOQL
How to Access Query Results (SOQL) Values using MAP in Apex Class?
How to Access Query Results (SOQL) Values using MAP in Apex Class? For Example: This is a After Trigger in Account: for (Account acc : Trigger.new) { accId.add(acc.Id); } map<Id, …
-
Remove the Space from String using Apex Class String str = ‘ TheBlogReaders.com Salesforce.com, PHP, MySQL, Javascript, Ajax, Htacces FREE Blog ‘; str = str.trim(); str = str.replaceAll(‘(\\s+)’, ‘ ‘); …
-
US Phone Format Using PHP Function Below PHP Example code will turn the poorly formatted US phone numbers entered by Customer and format with following formats: (XXX) XXX-XXX or XXX-XXX-XXXX …
- APEXData LoaderReportsSALESFORCE
How to generate the reports that list of all the Knowledge Users and Service Cloud licenses?
How to generate the reports that list of all the Knowledge Users and Service Cloud licenses? Its not possible to generate the reports for Knowledge users, Service Cloud user but …
- SALESFORCESalesforce CertificationSalesforce ConfigurationSalesforce.com
How many External ID’s can have for each salesforce standard or custom object?
How many External ID’s can have for each salesforce standard or custom object? -Saelsforce custom object, we can create up to seven (7) custom fields on each object as being …
- SALESFORCESalesforce ConfigurationSalesforce.com
How to check the custom field as External ID and Unique field using apex class
How to check the custom field as External ID and Unique field using apex class its achievable with the help of DescribeFieldResults on each Salesforce Objects, below is the sample …
- ConfigurationSALESFORCESalesforce ConfigurationSalesforce.com
Salesforce Custom objects and fields Limitation
Salesforce Custom objects and fields Limitation Custom Objects and fields limitation is based on the Salesforce Edition (Group, Professional, Enterprise and Unlimited Editions) Salesforce.com Editions Group Edition Professional Edition Enterprise …
- APEXSALESFORCESalesforce CustomizationSalesforce.com
How to get field data types for each fields in Salesforce objects?
How to get field data types for each fields in Salesforce objects? we can get the all the standard and custom objects fields data types using the getGlobalDescribe, getDescribe, getType. …