Hi all. I've created an SSRS report, imported into CRM, that uses the following stored procedure for data:
CREATE proc [dbo].[crmOppOrderInfo]
as
begin
SELECT ...
FROM FilteredOpportunity AS CRMAF_FO
WHERE (statecode IN (0, 1)) AND (closeprobability <= 92)
end
I want my users to be able to use the OOTB pre-filtering capabilities (like in the below image) in the CRM UI to filter this report further.
Has anyone managed to find a way to get this to work?
Thanks in advance, everyone.