Published report on service portal report widget not working for external users (snc_external) "Security constraints prevent access to requested page"Issue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms When an external user (snc_external role) views the Report widget which is displaying a published report they get "Security constraints prevent access to requested page" instead of the report. Cause The user does not have access to the report_viewer ui_page which we use to display the report in the widget. Also it needs to have read access to the sys_report table and review_view access to the table where the data in the report comes from Resolution Here are the steps to add the new ACL for the report_viewer ui_page so snc_external users can see reports in the report widget. 1) Navigate to System Security > Access Controls (ACL). 2) Click the New button. 3) Set the Type to ui_page, the Operation to read, and the Name to report_viewer 4) Add the snc_internal and snc_external roles. 5) Save the ACL. 6) Repeat step 1 & 2, then set the Type to 'record', the Operation to 'read', and the Name to 'sys_report' 7) Add the snc_external role and save the ACL 8) Repeat step 1 & 2, then set the Type to 'record', the Operation to 'report_view', and the Name to the table where the data in the report comes from. For example, if the report is for Incident, then put the name on incident 9) Add the snc_external role and save the ACL.*Note: please also add other roles that need to access corresponding reports to this ACL e.g. itil or snc_internal, depends on your actual requirement. Otherwise, users without the snc_external role will not be able to access those reports after adding the ACL. This behavior is working as how the report_view ACL designed*