
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2019 07:11 AM
I'm working on a workflow and orchestration activity that are in a scoped application, and when I attempt to get the error message output the activity throws an error about there being a scope access error. Typically I would add cross-scope access to address this, but for this one I'm not sure exactly "what" I need to grant access to. The error message and code are below (lines 1-5 are all of the code) and the code is in the Orchestration activity's "post processing" section. Does anyone know how I grant access for this scope to access the Glide API string utilities?
com.glide.script.fencing.CrossScopeAccessNotAllowedException: Access to Glide API: string utilities from scope x_cloudforma not allowed Caused by error in sys_trigger.031c191edbbf2f005e9cf6e9af96190b at line 2 1: if(!gs.nil(executionResult.errorMessages)) { ==> 2: activityOutput.errorMessage = executionResult.errorMessages; 3: } else { 4: activityOutput.errorMessage = "No errors encountered"; 5: } |
Solved! Go to Solution.
- Labels:
-
Orchestration

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2019 08:29 AM
Create cross scope record between your scope and "string" like below
Regards,
Sachin

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2019 08:29 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2019 09:02 AM
That worked, thanks!