- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2017 02:05 AM
I have added a state in sysapproval_approver named review
I have attached an image in which you can see that I have added a state named review in the aproval activity. when i am changing state in approval table to Approved or rejected the flow is going fine in the workflow. But the problem is when i am changing the state to review the flow is not working .
I given the condition in the workflow activity for state review activity.result == 'reject-review'
'reject-review' is the value of the state review that I added in approval table
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2017 02:09 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2017 02:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2017 02:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-19-2018 03:29 PM
Is there an updated link... that doesn't work in Docs and I can't find any articles when I search around the wording of that article.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2018 03:51 PM
Here are 2 relevant links for managing workflow activity conditions.
Manage transitions between workflow activities
Manage workflow activity conditions
When the Approval Activity is processed, it returns the Approval.State value as "activity.result". This value is referenced in the Activity Conditions. If you want to add a custom value, you would need to first add the value to the Approval.State [sysapproval_approver.state] choice list, and then add an Activity Condition to compare the "activity.result" value against the custom value (as shown above in the screen shot).
For example, if your custom State value was Review [review] then the Activity Condition script would be:
activity.result == 'review'