- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2022 08:26 PM
Hi ,
We have a requirement that we need enable edit button in change management for under Approval section for particular users for them to add adhoc approval for change authorizations.
BESIDE NEW BUTTON WE NEED ADD EDIT BUTTUON ALSO
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2022 08:36 PM
hello,
Please do the below:-
Go to Approver related list right click-> configure-> list control
Uncheck the omit edit button checkbox and add the roles which should have the edit option.
Incase if you want to make the edit button available for a particular group or user just add the below script in the omit edit condition field(sometimes this fields is not visible just configure form layout and bring it on the form) and also make sure the omit edit button checkbox is unchecked.
For users use below script:-
answer= true;
if(gs.getUserID()=='sysidoftheuser')
{
answer=false;
}
If it is for group use the below:-
answer= true;
if(gs.getUser().isMemberOf('sysidofthegroup'))
{
answer=false;
}
Please mark my answer as correct based on Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2022 08:36 PM
hello,
Please do the below:-
Go to Approver related list right click-> configure-> list control
Uncheck the omit edit button checkbox and add the roles which should have the edit option.
Incase if you want to make the edit button available for a particular group or user just add the below script in the omit edit condition field(sometimes this fields is not visible just configure form layout and bring it on the form) and also make sure the omit edit button checkbox is unchecked.
For users use below script:-
answer= true;
if(gs.getUserID()=='sysidoftheuser')
{
answer=false;
}
If it is for group use the below:-
answer= true;
if(gs.getUser().isMemberOf('sysidofthegroup'))
{
answer=false;
}
Please mark my answer as correct based on Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2022 08:54 PM
@Saurav11 sure saurav let me try