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
kickingboykickingboy 

Prepopulate task subject on lead conversion

I know I can set the Do not create opportunity checkbox by using a custom convert button

with the following code

"/lead/leadconvert.jsp?retURL=%2F{!Lead.Id}&id={!Lead.Id}&nooppti=1"

but can I prepopulate the subject field on the task with something similar to the following

"/lead/leadconvert.jsp?retURL=%2F{!Lead.Id}&id={!Lead.Id}&nooppti=1&Subject={!Lead.Company}"

In other words can I  find a list of parameters for leadconvert.jsp

RCJesseRCJesse
Just wondering if you ever found out if and how you do this?
kickingboykickingboy

Yes

Use "tsk5_fu" as a URL parameter name for task subject.
Ex:
/lead/leadconvert.jsp?retURL=%2F{!Lead.Id}&id{!Lead.Id}&tsk5_fu=test-subject-text

 

Actually you can find the name of all the variables  on the lead convert page by looking at the source (view source in browser) I should have realised Duh!