I received a system email from Salesforce this morning referecing a 15 character user id. The message is: "Apex script unhandled exception by user/organization: XXXXXXXXXXXXXXX."
Any idea how to cross cross reference the 15 character userid with the 18 character userid?
Thanks.
If you are in Lightning and put this after the .com you should be able to identify the user with the 15 digit ID
...com/lightning/r/User/[15 digit ID here]/view
If you are in classic you can just put the 15 digit ID right after like
...com/[15 digit ID]
That's if you are trying to just find the user.
If you want the associated 18 digit ID then create a formula field on the User object with this as the formula "CASESAFEID(Id)" and that will display the 18 digit ID on the record. Then you have it available to reference.
Hope that helps.