How to debug report issues when report filters based on an interactive filter value.SummaryIn many cases, the dashboard has multiple interactive filters which can filter multiple reports on the same dashboard tab. The interactive filters can be of different types and with different settings that can be applied. Specially when the interactive filter is applied to all tables in hierarchy or also applied to database views the filters evaluated to apply might vary and cause the report filter with unexpected data. This article helps users to correctly find the conditions being applied to report. InstructionsMany times the users report the issue as report not showing correct data (or No data) when the filter is applied. Open the dashboard that has the affected report and follow the following steps to find the filter being applied to the report. Apply the interactive filter value by selecting a valueThe reports with setting "Follow interactive filter" will filter based on selected value.Open the developer tools for browser. For Chrome Browser Menu -> View -> Developer ->Developer Tools. Firefox browser Menu ->Tools -> Web Developer ->Toggle Tools Navigate to Network tab on developer toolsClick on the clear icon to clear any text you might have here. From the dashboard pane, click the refresh icon on the report widget. In the network tab, you will see a report_viewer.do transaction call. You can click the red circle to stop tracing the network activity further.Click on the report_viewer.do in the name section and you can see the Headers, Preview, Response sections for this request.Click on Response Confirm the report title is the report you have refreshed and observe the followingThe repParams.publisher_filter are the encoded query conditions available on the report.The value for repParams.filter is encoded query conditions from interactive filters appended to report conditions. If you apply this encoded query on the report, the result shown on the report is the same as one on the dashboard. Review the settings and reference mappings (in case of reference or cascading filter type interactive filters) to understand how the additional conditions are being applied from the interactive filter.