By default the Qualify Lead button creates an account, contact, and/or opportunity. Is there a way to NOT create an opportunity, and only create an account and contact?
*This post is locked for comments
If you want to qualify by webapi ((javascript) on click of custom qualify button you can refer the link
www-inogic-com.cdn.ampproject.org/.../
Please replace the piece of code in the given link with below code :-
//pass the parameters required var data = { "CreateAccount": true, "CreateContact": true, "CreateOpportunity": false, "Status":3 };
If you want to qualify using plugin then you can refer the link below :-
alphabold.com/.../
Please replace the piece of code in the given link with below code :-
context.InputParameters["CreateOpportunity"] = false;
context.InputParameters["CreateAccount"] = true;
context.InputParameters["CreateContact"] = true;
}
Thanks!
I had similar requirements.
You would want to create a C# plugin and register it to a Pre-Operation step and use the QualifyLead message using the plugin registration tool.
C# Plugin:
Plugin Registration step:
Please check below old thread -
community.dynamics.com/.../qualifying-a-lead-to-contact-without-creating-opportunity
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,240 Super User 2024 Season 2
Martin Dráb 230,149 Most Valuable Professional
nmaenpaa 101,156