Home SALESFORCE Clone Salesforce.com User Records Using a Custom Link

Clone Salesforce.com User Records Using a Custom Link

create a custom custom link in User Object in salesforce and then the redirect the page like:

SALESOFRCE.COM URL/RecordId/e?clone=1&retURL=RecordId

For Example:

https://ap1.salesforce.com/00590000003gTAe/e?clone=1&retURL=00590000003gTAe

if you want to clone the User then please use the below Formula:

/{!User.Id}/e?clone=1&retURL={!User.Id}

Here’s a list of the things I think if we need to include in the URL to remove the existing user details while creating a new user in salesforce with the help of clone link:
Remove the First Name – name_firstName=
Remove the Last Name – name_lastName=
Remove the Alias – Alias=
Remove the – Email=
Remove the – Username=
Remove the – CommunityNickname=
Pass a return URL in case we decide to cancel the request – retURL=

Like:

Like:
/{!User.Id}/e?clone=1&retURL={!User.Id}&name_firstName=&name_lastName=&Alias=&Email=&Username=&CommunityNickname=

You may also like

Leave a Comment