User doesn't have permission to view the reportIssue Some user not able to see the flow report page due to the error "User doesn't have permission to view the report". When Flow execute in background, it run in different environment than the session who triggered the flow. Background session in which flow is running may have different role or different user (like system) and flow can run with role which user doesn't have. Some roles are special which has encryption context attached with them (sys_user_role.encryption_context). Those roles can be used to encrypt and decrypt in platform and expectation is that anyone without that role shouldn't able to see that encrypted data. Flow always run with some roles either user (if it is run as user) OR system (if flow run as system it take admin role) OR if there is any roles defined on flow and any of those role could have encryption context attached, If someone want to see the execution report for the context, they should have all the encryption context with which flow ran. CauseFlow always run with some roles either user (if it is run as user) OR system (if flow run as system it take admin role) OR if there is any roles defined on flow and any of those role could have encryption context attached, If someone want to see the execution report for the context, they should have all the encryption context with which flow ran.ResolutionMake sure user who is trying to see execution details should have encryption context (roles) which flow ran with. If flow is running as system, it means it running as admin role + all inherited roles under admin. remember any roles in hierarchy can have encryption context. Common scenario I clicked on Test button but I can't see execution details with error "User doesn't have permission to view the report" This may happen because flow is running as system. Flow run with admin role + all the role which admin inherit. If any of those role have encryption context, user who clicked on Test button is missing that encryption context. Related LinksFinding the role(s) with encryption context: Find the role(s) with encryption context using the following filter: https://__INSTANCE_NAME__.service-now.com/sys_user_role_list.do?sysparm_query=encryption_context!%3DNULL Check the role(s) with encryption context against the role(s) assigned to the user the flow is run as