ACL action of "run as" under Scheduled Job Summary<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } The GlideRecord will bypass ACL for all tables as expected behavior (ref. KB1570836 - Scheduled job is deleting records when run as user does not have access to records), so although the "run as" user has no permission, the job will run successfully. Here are some related QAs regarding the issue: Q1. Except for GlideRecord, will ACL be bypassed through like GlideAgregate or other API? You can use GlideRecordSecure if you want to use GlideRecord but enforce ACLS. GlideAggregate will act the same, but there looks to be some methods like canRead, canWrite, canDelete, etc that you can use to enforce ACLS. See https://developer.servicenow.com/dev.do#!/reference/api/utah/server/no-namespace/c_GlideRecordScopedAPI#r_ScopedGlideRecordCanCreate Q2. All types of ACL(read/create/write/delete) will be bypassed? Unless using GlideRecordSecure or any of those methods above, then the ACLs will be bypassed. Q3. What about scope across privilege? Will GlideRecord bypass scope across privilege? GlideRecord will not bypass cross-scope privileges.