It sounds like you are experiencing a permissions issue specifically related to folder access in SQL Server Reporting Services (SSRS). In SSRS, permissions can be quite granular, and it's not uncommon to encounter situations where users can access reports directly but are restricted from accessing the folders that contain those reports.
Here are some steps you can take to troubleshoot and resolve the issue:
- Check Folder Permissions
- Navigate to the Folder: In the SSRS web portal, navigate to the folder that contains the reports.
- Folder Security Settings: Right-click on the folder and select "Manage" or "Properties" (depending on your SSRS version). Look for the "Security" tab.
- Review Permissions: Ensure that the
Operations Manager Report Operators
group has at least "Browser" permissions for the folder. If they do not, add them and ensure that the permissions are inherited from the parent if that is your desired configuration.
- Verify Group Membership
- Check Group Membership: Ensure that the users who are having issues are indeed members of the
Operations Manager Report Operators
group. Sometimes, there may be a delay in permission propagation or a user might not be properly added to the group.
- Review Parent Folder Permissions
- Check Parent Folder: If the folder is nested within another folder, make sure to check the permissions on the parent folder as well. Sometimes permissions need to be set at multiple levels.
- Review SSRS Logs
- Check SSRS Logs: Review the SSRS log files for any errors or warnings that may give more context on why the permissions are being denied. The log files are usually located in the
LogFiles
directory of your SSRS installation, often found atC:\Program Files\Microsoft SQL Server\MSRSXX.MSSQLSERVER\Reporting Services\LogFiles
.
- Restart SSRS Service
- Restart the Service: Sometimes, a simple restart of the SSRS service can resolve permission issues due to caching.