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
LoltLolt 

loadconvert.jsp use existing account accids

I'm working on an override for the Convert button that, under particular circumstances, force a lead to be merged with an existing account rather than creating a new one.  Following is the code fragment.   Resulting URL has no accids argument ???

    var newURL = "{!URLFOR($Action.Lead.Convert, Lead.Id,
        [accids=Account.Id,
         nooppti=0,
         retURL=$Request.retURL], true)}";
    log("newURL: " + newURL);
    window.parent.location.href=newURL;

What am I missing?   Am I using correct argument(s)?

Thanks