Consider that there is a SQL Server Reporting Services (SRS) report displaying within an IFrame on any specific entity form in CRM. The report is being accessed in this IFrame via URL access parameters for SRS. The jscript snippet defining the report URL is as follows:
var reportUrl = REPORT_SERVER_URL + "REPORT_NAME&rs:Command=Render&rc:Parameters=true&" + "PARAM_NAME=" + SELECTED_VAL
When the record of this entity is updated, the IFrame does not refresh report data with updated values. The data displayed in IFrame updates correctly only if you first close out this record and then open another record of this entity with the report being rendered again for different parameters. Once the original record is reopened now, the report refreshes correctly within IFrame.
var reportUrl = REPORT_SERVER_URL + "REPORT_NAME&rs:Command=Render&rc:Parameters=true&" + "PARAM_NAME=" + SELECTED_VAL
When the record of this entity is updated, the IFrame does not refresh report data with updated values. The data displayed in IFrame updates correctly only if you first close out this record and then open another record of this entity with the report being rendered again for different parameters. Once the original record is reopened now, the report refreshes correctly within IFrame.