In servicenow ITSM modules
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â12-04-2024 05:26 AM
What are all the Challenges faced in Custom Applications in terms of Cross Scopped access?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â12-04-2024 06:09 AM
Hi @subhashini ,
1. Accessing a Script Include from Another Scope
⢠Error: Access to Script Include âMyScriptIncludeâ from scope âx_app_aâ has been denied.
Set the Accessible from field of the script include to All Application Scopes.
2. Accessing a Table in Another Scope
Error: Access to Table âu_custom_tableâ from scope âx_app_aâ has been denied.
Update the tableâs Application Access to allow access from other scopes.
3. Calling a Scoped REST API
Error: Cross-scope access denied for REST API âx_app_b.MyAPIâ.
Set the Accessible from field in the REST API resource to All Application Scopes.
4. Writing to a Table in Another Scope
Error: Cannot perform âinsertâ operation on table âu_custom_tableâ in scope âx_app_bâ.
Configure the tableâs cross-scope privileges to allow Create or Write access.
5. Using Scoped Flow Designer Actions
Error: Cross-scope access to Flow Action âx_app_b.MyFlowActionâ denied.
Set the Accessible from property of the action to All Application Scopes.
Mark it as helpful and solution proposed if it serves your purpose.
Thanks,
Anand