How can we get these two options complete and incomplete in Catalog task
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2023 05:39 AM
Hi Community,
How can we get these two options complete and incomplete in Catalog task
instead of one transition line.
Please find the below screen shorts for your reference, one is complete and incomplete screenshot and another one is one transition line
thanks in advance
Regards
Srinivasu Sagiraju
Regards
Srinivasu Sagiraju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2023 06:00 AM
Hi @Srinivasu2 ,
1. In the Catalog Task activity configuration form configure the task fields as required and save. Then, under related links click on "conditions".
This will bring up the following form.
2. Click on "New" button and configure the condition for "Complete" as below.
Name: Complete
Condition Type: Standard
Condition: activity.result == 'Closed complete'
and submit the form.
3. Again Click on "New" button and configure the condition for "In Complete" as below.
Name: In Complete
Condition Type: Else
and submit the form.
4. Now you can see two conditions
5. And here you got the two lines.
Anvesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2023 06:01 AM
Hi,
Right click on the activity and 'Add Condition'

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2023 06:03 AM
Hi Srinivasu,
OOTB we dont have stage field on sc_task table, generally we map state filed and ideal based on sc_task state RITM stages are set, lets say if any of your task is closed incomplete the RITM stage is set to Close Incomplete, or if all task are closed complete then RITM stage is set to close complete.
But if you have any custom field or sc_task table and you want it for specific catalog or you are using any generic task workflow and you can your use set action workflow activity or any run script as well. its will depend on how your current workflow is setup.
Also you can write Business rule to sync both the field when RITM stage is updated you can update sc_task stage of respective task.
Thanks,
Vijay Balotia
Please mark the appropriate response as correct answer and helpful, This may help other community users to follow correct solution.
Thanks
Vijay Balotia
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2023 06:14 AM
Hi @Vijay Balotia1 ,
Right click on your ScTask activity to add a condition and refer the below codes for respective states.
Complete :
activity.result == 3
Incomplete or Skipped:
activity.result == 4 || activity.result == 7
Mark ✅ Correct if this solves your issue and also mark 👍 Helpful if you find my response worthy based on the impact.
Thanks,
Venkatesh Nekkanti