New Experience Project Workspace - Resource Status Column
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2024 09:42 AM
How do you make the Resource Status Column read only for project managers but not for Resource Managers.
Labels:
- Labels:
-
Service Portfolio Management
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2024 12:22 PM
Create access control and make sure application scope is also as below.
Advanced:
//This return true only when the user has exact role as resource manager
var roles= gs.getUser().getUserRoles().toString();
if(roles.includes('resource_manager'))
{
answer = true;
}
else{
answer= false;
}
Mark correct and helpful.