Approval triggering in workflow

Gayathree Seeth
Tera Expert

Hi,

 

Could anyone help me on this case.

 

1. a

2. b

Like this i have 17 check boxes which are applications.

I need to trigger only one approver for any number of selections it may be and create each tasks for each selection.

 

Thanks 

 

 

9 REPLIES 9

RushabhSurana
Tera Contributor

You can achieve it with the help of Flow. In a flow, first of all use "Ask for approval" action and then add multiple "If" conditions where you can check for each application checkbox selection status and then you can use "create task" activity for each "If" check.

 

If this finds you helpful, please mark this solution as helpful 

RushabhSurana
Tera Contributor

You can achieve it with the help of Flow. In a flow, first of all use "Ask for approval" action and then add multiple "If" conditions where you can check for each application checkbox selection status and then you can use "create task" activity for each "If" check.

 

If this finds you helpful, please mark this solution as helpful.

Community Alums
Not applicable

hi ,

In ServiceNow, you can configure your checkboxes to trigger only one approver while creating individual tasks for each selection by following these steps:

  1. Create a Checkbox Field: Add a checkbox field on your form to allow users to select multiple applications.

  2. Use a Business Rule: Set up a Business Rule that triggers on record insert or update. This rule should check which checkboxes have been selected.

  3. Loop Through Selections: In the script of the Business Rule, loop through the selected values of the checkboxes. For each selected option, you will create a new task record.

  4. Set Common Approver: Ensure that all created tasks are assigned to the same approver by setting the approver field in each task record.

Thanks Tej,

I am trying with this will update you