Click here to Skip to main content
15,889,096 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have the problem on filtering in SSRS report only in browser. But, it works fine in Business Intelligence. Actually when i filter the Item group, the Test group is automatically refreshed and filtered in Business Intelligence (Please refer the picture 1). But, After deployment in browser, when i filter the Item group, the Test group is not refreshed. Nothing happened (Please refer the picture 2). But if i set From date and to date with in 2 months period it filtered. It works fine in browser. I don't know what is happening here. please suggest me a good solution. Thanks.


Picture1 and Picture2

Sample code for Item Group filter and Test Group filter given below


What I have tried:

SELECT distinct ITEMGROUPID from ADK_MY_QUALITYORDERDIMGRPVIEW where ((PRODDATE>=@FromDate and PRODDATE<=@ToDate) or (@FromDate is null and  @ToDate is null)) and DATAAREAID =(select LEFT(@Company,CHARINDEX('-',@Company)-1)) order by ITEMGROUPID

select distinct TESTGROUPID from ADK_MY_QUALITYORDERDIMGRPVIEW where ((PRODDATE>=@FromDate and PRODDATE<=@ToDate) or (@FromDate is null and  @ToDate is null)) and ITEMGROUPID in (@Itemgrp) and DATAAREAID =(select LEFT(@Company,CHARINDEX('-',@Company)-1)) order by TESTGROUPID
Posted
Updated 5-Jul-17 15:11pm
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900