How restrict user to download/upload attachments while accessing ServiceNow through mobile web/brows
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2023 08:15 PM
We need to restrict user to download and upload an attachment, while user access ServiceNow through mobile web/browser.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2023 11:54 AM
Hi, you may need to update existing sys_attachment ACL's to include a check for isMobile()
Mobile security (servicenow.com)
Disabling attachments on a mobile device
You can configure ACL rule to block attachments specifically on mobile devices. Use the isMobile
method to check if a request comes from a mobile device. For example, you could add an ACL rule for the attachment [sys_attachment] table where the read and write scripted ACLs includes the following check.
if( gs.isMobile() ){
answer = false;
}