workflow IF condition
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2023 11:36 PM
Requestor's Manager | if Position contains (M4 or M5 or any E#), or Title contains (Chief or Director or SVP or VP), then no manager approval required. Else, require approval of requestor's manager. |
Nicole Elder (create Gift Card approval group) | for gift card requests |
Nicole Elder, Kelly Clarkson (create Charitable Donation approval group) | for charitable donation requests |
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2023 11:50 PM
Hi @madhukarreddy ,
In your IF condition you can write as below :
(current.variables.requested_for.manager.title.indexOf("Chief") > -1)
{
do your stuff;
}
similarly you can do for other values and other variables on manager record.
Please mark helpful/correct if my response helped you.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2023 10:08 PM
Thanks Anubhav24
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2023 04:50 AM
Please mark helpful/correct if my response helped you.