Different approvers at each step in flow

karlab
Tera Contributor

Hello

 

I have different steps in my flow. After user submits the first 10 fields in the form, it should be approved, then if approved, the approver fills out the next 3 fields, then the next approver after approving, fills out the next 5 fields, and so on.

 

Here's how my flow looks. My issue is that even before the approver approves all fields are editable for the approver instead of just their specific fields

 

karlab_1-1718892907165.png

Scope of work was submitted by requestor. Once first approver approves, architect assignment and intake priority should be unlock, when the approver opens up the RITM number the fields automatically are unlocked before approving

 

1 REPLY 1

Sandeep Rajput
Tera Patron
Tera Patron

@karlab On your Requested item, you can choose to create a client script which will check the logged in user role and accordingly allow the user to edit the field. This can be doe via the following code.

 

if(g_user.hasRole('itil')){
g_form.setReadOnly('intake_priority',true);
}