Workflow - "Wait for Condition" activity
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi All,
I have put the Wait for Condition activity in the workflow with the condition:
1. Approval is Approved
2. A particular catalog task should be closed
then only the workflow should move forward but the WF is not moving forward. The WF is getting stuck at the Wait for Condition.
Can someone please tell me what is the issue and how that can be fixed?
Thanks,
Rooma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
1. Refer the 1st commented line, set the answer as true or false and you are doping return.
2. Set the answer accordingly and check.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
@RaghavSh Its not working even if I set the answer = true/false.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
share your updated code.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
A Wait for activity script returns true to continue to the next step. You are using the structure of an If activity script for some reason. You can remove the first 5 lines of your script, then change line 17 to
answer = true;}}
to end the script.