• Maksim Kholodny
  • NEWBIE
  • 5 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
hello, community! I'm a newbie and I really need some help.
the Order object has values in the status field: "New", "Activated", "In Progress", "Received", "Finished", "Canceled".
The Order object has a field: Account Name, Order Owner, Order Start Date, Status, Opportunity, Ship To Contact, Order End Date, SLA Offers Date.

You cannot change a closed Order with the Finished status
I've tried using this formula, but it doesn't work:

AND(
ISPICKVAL(Status, "Finished"),

OR(
IS CHANGED(Status),
ISCHANGED( Account Id ),
ISCHANGED( OwnerId ),
ISCHANGED( Effective Date ),
ISCHANGED( OpportunityId ),
ISCHANGED( Ship To Contact Id ),
ISCHANGED( EndDate ),
ISCHANGED( SLA_Offers_Date__c )
)
)
hello, community! I'm a newbie and I really need some help.
the Order object has values in the status field: "New", "Activated", "In Progress", "Received", "Finished", "Canceled".
The Order object has a field: Account Name, Order Owner, Order Start Date, Status, Opportunity, Ship To Contact, Order End Date, SLA Offers Date.

You cannot change a closed Order with the Finished status
I've tried using this formula, but it doesn't work:

AND(
ISPICKVAL(Status, "Finished"),

OR(
IS CHANGED(Status),
ISCHANGED( Account Id ),
ISCHANGED( OwnerId ),
ISCHANGED( Effective Date ),
ISCHANGED( OpportunityId ),
ISCHANGED( Ship To Contact Id ),
ISCHANGED( EndDate ),
ISCHANGED( SLA_Offers_Date__c )
)
)