Different approvers at each step in flow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2024 07:16 AM
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
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2024 08:06 AM
@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);
}