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
NoorNoor 

Need to Expose Lead Information in Account Page

Hello Everyone,
 
My client has a requirement to expose Lead Information in the Account Page. It is my understanding that once we convert Lead to an Opportunity, the Lead information is erased and there is no link between the Lead and the Account.
 
Please correct me if I am wrong, and if someone has created a routine to expose Lead information on the Account , please let me know how I fullfill this requirement.
 
Thanks,
 
Hanif
sfdcfoxsfdcfox
Conversion does not delete a lead, it "archives" it. To find the archived information, you can do a query to find your information:

select id,firstname,lastname,custom_field__c,other_custom_field__c from lead where convertedaccountid = '{!Account.Id}'

I hope this helps you out in your quest to find the lead information. You can do this in an S-Control using the AJAX toolkit as well.

~ sfdcfox ~
NoorNoor
Thanks for your reply to my email . This wil really help me out.
 
Hanif