Scrip step in flow while migrating from workflow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2024 12:29 PM
Above is not working as expected, can you please suggest modification, or alternatives
If new name is entered in field, return yes, else no, and if new name is entered in field, create catalog task,
I am migrating workflow to flow, above step in workflow is done using If asner script, in flow I am using as above, but it is not working properly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2024 02:06 AM
HI @venkata2023 ,
in flow its no necessary to retrun yes or no values as like we do in workflows , here in flows if the condition you give in ''if conditon'' matches it will return true and execute the next activity for if conditon logic or else it will return false and else logic activities will be applied.
in your case create a next activity under if conditon if the conditon matches and same for else condition too...
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2024 02:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2024 02:17 PM
Every time its returning yes and creating task,
My requirement is if new name is entered in a field return yes and create task, else wait for close complete. I defined the if condition if variable is not empty return yes and create task else wait for close condition.