- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
Platform: Zurich patch4-hotfix3
Context: Our platform use is specifically targeted to customer service agents via a customized CSM application. CSM is the only real licensable product on our instances. No other products are installed. Users access the instance via a SSO integration with an external IdP. Besides local access for administrative needs, all end-user access is through SSO and users are provisioned via an LDAP integration.
As is typical after a family release upgrade, we go in after the fact and disable menu items that are perceived as noise to end users. No different with Zurich. However, we are unable to disable the Authentication Factors menu item as it seems to be protected by some protection policy. I am unable to figure out how to get around that protection policy so that we can disable the menu item. Has anyone else faced this issue?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 weeks ago
I ran the following script from the background, but I received a message and couldn't update the application menu. Why is that?
■Script
var gr = new GlideRecord('sys_app_application');
gr.addQuery('title', 'Authentication Factors');
gr.query();
if (gr.next()) {
gr.sys_policy = ''; // Clear protection policy
gr.roles = 'admin'; // Only admins will see this module
gr.update();
gs.info('Updated module: ' + gr.sys_id);
}
■Message
Background message, type:access, message: This item is read-only based on its protection policy.
