Skip to main content
I have a custom object that I'm trying to update based off of a value in a field on the Contract it's related to. I'm not getting any syntax errors with my formula, but the workflow isn't working. What am I missing?

 

When the contract has a reason for cancellation type of 30 day cancellation:

 

ISPICKVAL(Contract__r.Reason_For_Cancellation_Type__c , "30 Day Cancellation")

 

I want to update the stage field on the Roadmap to Cancelled contract

 

Custom object workflow help
2 件の回答
  1. 2013年6月27日 20:42
    Davina-

     

    The object that your workflow is referencing is the Membership Roadmap object.  But the rule criteria is looking for Contract field to change.

     

    My sense for a cross object workflow, is that the object for the workflow rule must be Contract, and when Reason_for_cancellation__c = '30 Day Cancellation', make a field update for Roadmap__c.Stage__c = 'Cancelled Contract'.

     

    Hope this helps!

     

    ~Jesse
0/9000