- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2023 10:45 AM
I'm attempting to utilize a Jira Integration Hub Subflow to update a custom form from a custom table and I'm receiving the following error:
Scope does not have write access to table u_maintenance_task
I've checked the table and read and write are checked for all scopes on the table settings page. I've also attempted to create a new Restricted Caller Access Privilege entry, but I've never done this before and I'm having difficulty setting the table values as it's forcing me to select a specific document instead of the entirety of the table.
I'm doing research on how this works, but any assistance to help speed this up is very much appreciated.
Thank you!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2023 10:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2023 10:50 AM
@PLakin1 Try below KB if helps you,
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0854565
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2023 11:17 AM
This does seem related. Marking helpful for now. I'm not seeing a change in the error though; I'll keep tinkering and will mark as the solution if it resolves it. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2023 11:24 AM
Abhay, this definitely seems relevant, but I can't seem to make it work. Is there something obvious I'm missing?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2023 12:10 PM
Abhay, this was indeed the solution. However, I had to perform the following command to make it work due to a wonderful caching issue I discovered from this other community thread:
Scope does not have write access to table sc_cat_i... - ServiceNow Community
Here is the background script I used:
GlideTableManager.invalidateTable("u_maintenance_task");
GlideCacheManager.flushTable("u_maintenance_task");