- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-26-2024 10:15 AM
Hi,
Admin doesn't have major_incident_major, but still able to edit field overview field. Why so?
Thanks in Advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2024 12:45 AM
I have resolved it using script:
if(gs.hasRoleExactly('major_incident_major') ){
answer=true;
}
else{answer=false;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-26-2024 10:18 AM
Hi,
Can you check if there happens to be incident.* or incident.none once and try then.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-26-2024 10:20 AM
incident.* and incident.none is generic, but we have incident.overview acl for that specific field. If i am not wrong specific win over generic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2024 12:45 AM
I have resolved it using script:
if(gs.hasRoleExactly('major_incident_major') ){
answer=true;
}
else{answer=false;
}