You need to sign in to do that
Don't have an account?
Update an Opportunity Field if an Opportunity Product is Selected
Hey All,
I'm trying to have an Opportunity Field (Has_Attentively__c) updated to True if any of my of my Opportunity Products contain "Social CRM". I can't seem to get this workflow to fire...any thoughts?
CONTAINS(Product2.Name, "social")
Thoughts?
Vinny
I'm trying to have an Opportunity Field (Has_Attentively__c) updated to True if any of my of my Opportunity Products contain "Social CRM". I can't seem to get this workflow to fire...any thoughts?
CONTAINS(Product2.Name, "social")
Thoughts?
Vinny
I think that you should create Worflow on Opportunti product(Opportunity Line Item). Condition will look like CONTAINS(LOWER(Product2.Name), "social")
All Answers
I think that you should create Worflow on Opportunti product(Opportunity Line Item). Condition will look like CONTAINS(LOWER(Product2.Name), "social")
Thanks for the speedy response but I'm still not having much luck with the actual workflow firing after updating my Rule Criteria is updated to CONTAINS(LOWER(Product2.Name), "social")
Vinny
Are you sure, that you created Workflow on "Opportunity product" not on "Opportunity"?
Denis
When you creating worflow on child object in Master-Detail reletionship you still can create Field update for Master object. So you should create Workflow on Opportunity Product object but create Field update for Opportunity.
Many thanks Denis.
Vinny