How do you edit the ROLE in Opportunity Contact Subpanel?
And by edit, I mean how to you edit the entry options in the list? I know how to change the role, but I cannot find anywhere in the studio where I can edit the drop down list of entries for “opportunity_role”
Thanks!
its in the Core Language file but you can customise it in
custom/include/language/en_us.lang.php
$app_list_strings['opportunity_relationship_type_default_key'] = 'Primary Decision Maker';
$app_list_strings['opportunity_relationship_type_dom'] = array(
'' => '',
'Primary Decision Maker' => 'Primary Decision Maker',
'Business Decision Maker' => 'Business Decision Maker',
'Business Evaluator' => 'Business Evaluator',
'Technical Decision Maker' => 'Technical Decision Maker',
'Technical Evaluator' => 'Technical Evaluator',
'Executive Sponsor' => 'Executive Sponsor',
'Influencer' => 'Influencer',
'Other' => 'Other',
);
1 Like
Hi, you can also change this in the user interface:
Admin / Dropdown Editor /
opportunity_relationship_type_dom
3 Likes
BOOM! There it is. I knew there had to be a way to edit that sucker.
Thank you - found it as drop down named “opportunity_relationship_type_dom”