- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2020 09:47 PM
Hi Team,
I want to insert a record in scoped application from global scope. but it is not allowing to insert due to cross scope.
can please some one help me on this.
I have return this BR on sys_email table. while met some conditions i want to insert a record in scoped application.
Thanks in Advance.
Solved! Go to Solution.
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2020 11:14 PM
Hi Ganesh,
so it should allow from BR also
can you try to add try catch block to check the exception thrown
try{
// your code
}
catch(ex){
gs.info(ex);
}
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2020 09:48 PM
Hi Ganesh - It depends on table application access setting. Details here
https://community.servicenow.com/community?id=community_blog&sys_id=44ad22a9dbd0dbc01dcaf3231f961921
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2020 09:54 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2020 10:15 PM
For testing purposes can you try to create record from background script in a global scope. If that still doesn't work then please share the error screenshot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2020 10:53 PM
Hi Pradeep,
Through Background script it is working fine but from BR it is not executing
Thanks,