You need to sign in to do that
Don't have an account?

Custom lead Conversion page
I am trying to convert the lead to Account, Contact and Opportunity and there are standard and custom fields required in the convert page.
here i want to use the same standard page and fuctionality and add the additional fields to that page.
if it possilble??
if it possible suggest me some code for that.
thanks,
If you want to display this fields on that ConvertLead.jsp page , then It is not possible to add some more fields on that page by standard customization.
To achieve this you need to go for VF page and Hit ConvertLead Standard API call from Controller,
create custom button ContentSource as javascript and redirect to that page [or custom button with contentSource as VF page ] use this Custom button to LeadConversion
If you are interested in only Validation of these fields, use CustomButton with content source as Javascript
do your validation and then redirect to COnvertLead.jsp page and pass Lead Id as parameter
like
/lead/leadconvert.jsp?id={LeadId}
Hope this will help you
Thanks,
Bala
Thanks for giving me reply..
so i have to create a visualforce page for lead convesion and add additional fields on it.
i tried this way but i could not able to get the lookup field for account and also the convert button is not working when i ovveride the standard with visualforce page.
here is the visualforce page and class that i written....can anyone help me on this.
thanks,
visualforce page:
public leadController(ApexPages.StandardController controller) {
}
public Task getTask(){
Task tsk = new Task();
return tsk;
}
}