reporting services - In SSRS, is it possible to make a context sensitive report containing multiple subreports for dynamics CRM 2011 -
reporting services - In SSRS, is it possible to make a context sensitive report containing multiple subreports for dynamics CRM 2011 -
i have designed ssrs study having multiple sub-reports. study working fine displaying info records. need create context sensitive.
below query main report.
select filterednew_franchisee.new_franchiseeid, filterednew_franchisee.new_name, filterednew_monthlypayment.new_insurance filterednew_franchisee inner bring together filterednew_monthlypayment on filterednew_franchisee.new_franchiseeid = filterednew_monthlypayment.new_franchiseeid (filterednew_monthlypayment.new_yearmonth = @reportyear + @reportmonth) , (filterednew_franchisee.new_franchiseeid in (select new_franchiseeid filterednew_franchisee crmaf_filterednew_franchisee))
sub-reports using fields above query parameter.
am missing ? there other approach needs followed? possible design context sensitive study having multiple sub-reports?
please help.
yes, context-sensitive reports possible. name filtered
in filterednew_franchisee
refers sql server view designed sake of security roles. gain access context-sensitive views, the api takes arbitrary prefix called crmaf_
, translates context-sensitive query.
thankfully, sdk includes sample view (which i've copied below).
class="lang-sql prettyprint-override">select crmaf_filteredactivitypointer.activitytypecodename activitytypecodename, crmaf_filteredactivitypointer.regardingobjectidname regardingobjectidname, crmaf_filteredactivitypointer.subject subject, crmaf_filteredaccount.name filteredactivitypointer crmaf_filteredactivitypointer inner bring together filteredaccount crmaf_filteredaccount on crmaf_filteredaccount.accountid = crmaf_filteredactivitypointer.regardingobjectid
reporting-services dynamics-crm-2011
Comments
Post a Comment