- 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 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-08-2020 12:47 AM
Hi Pradeep/Ankur,
its working as expected now.
Thanks,
Ganesh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2020 07:43 PM
Hi Ganesh - Just curious what was the solution to resolve that issue?