Access denied error when accessing Security Incident data from a global scope due security restrictions but access to data is granted anywayIssue When accessing Security Incident data from a global scope, an error is returned stating that access has been denied because of security restrictions but access to the data is granted anyway. Execute the following in a background script to reproduce:------------------------------------------------------------var grSI = new GlideRecord('sn_si_incident');grSI.addEncodedQuery('cmdb_ci!=NULL');grSI.query();gs.print('ATTEMPTING TO READ SI DATA');gs.print('==========================');while (grSI.next()){gs.print(grSI.number + ' : ' + grSI.short_description + ' : CI: ' + grSI.getDisplayValue('cmdb_ci'));}gs.print('Number of SIs with CIs: ' + grSI.getRowCount());------------------------------------------------------------And the errors will be reported in the output, like:Source descriptor is empty while recording access for table sn_si_incident: no thrown errorSecurity restricted: Read operation on table 'sn_si_incident' from scope 'Global' was denied because the source could not be found. Please contact the application admin.CauseThese warning messages are cosmetic only and do not impact the platform behavior. They are part of RCA tracking mode and a result of UI Pages not being a tracked source type at this time.ResolutionTo turn Root Cause Analysis (RCA) tracking and the warning messages off: Navigate to sys_db_objectOpen "sn_si_incident" table recordUnder Application Acces Tab > Caller Access > change "Caller Tracking" to "-- None --"Invalidate cache (Run "gs.invalidateCache()" using background scripts).Try the Steps to reproduce again. The message should be gone. NOTE: Everything in the Security Incident app is set to tracking so it won't affect any functionality even if it is turned off.