Enabling Remote Errors includes external error information (for example, error information about report data sources) with the error messages that are returned for users who request reports from remote computers. By default the remote errors in SSRS is set to false, which means error messages in a multi-server environment are not detailed.
Enable Remote Errors by using the Report Server Properties
Enable Remote Errors by using the Report Server Properties
- Open SQL Server Management Studio (SSMS) and connect to the Report Server
- Right-Click on Report Server and Choose "Properties"

- Navigate to the "Advanced" Page and set the "EnableRemoteErrors" to "True" and Click "OK"
Enable Remote Errors by Modifying the ConfigurationInfo table
USE ReportServer GO UPDATE ConfigurationInfo SET [Value] = 'True' WHERE Name = 'EnableRemoteErrors'Note: If you modify the setting in the database, you need to restart the Reporting Services service before the changes take effect.