function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sfdc@SmithaSfdc@Smitha 

Salesforce id conversion?

How to convert 18 digit id into 15 digit id in salesforce?can anybody help me?

@anilbathula@@anilbathula@

Hi

 

Just remove the last three letters in the id which are in capital letters

Then it will be the 15 didgits id.

harsha__charsha__c

String.valueOf(Id).substring(0,15)