I am facing a problem when trying to pass dynamic parameters to a report created using fetchxml. When I see a preview of the report in BIDS I can enter the parameter values and the report works just fine, but the problem occurs when I try to run the report from CRM online. The report doesn't seem to pick the 'account' and 'account plan' values in CRM and the report is empty. FYI, 'account plan' is a custom entity I created. I'd appreciate if someone can please take time and provide their inputs/suggestions on how I can sort this problem out.

Many Thanks, Arthur

Here is some information from my fetchxml report...

I have added the following report and query parameters to my report:-

    <QueryParameters>
      <QueryParameter Name="@CRM_FilteredAccount">
        <Value>=Parameters!CRM_FilteredAccount.Value</Value>
      </QueryParameter>
      <QueryParameter Name="@CRM_FilteredAccountPlan">
        <Value>=Parameters!CRM_FilteredAccountPlan.Value</Value>
      </QueryParameter>
    </QueryParameters>

String CRM_FilteredAccount String CRM_FilteredAccountPlan

This is the root entity tag:-

<entity name="account" enableprefiltering="true" prefilterparametername="CRM_FilteredAccount">

where I am using the following filter:-

&lt;filter type="and"&gt;
  &lt;condition attribute="statecode" operator="eq" value="0" /&gt;   
  &lt;condition attribute="name" operator="eq" value="@CRM_FilteredAccount" /&gt;
&lt;/filter&gt;

This is the link-entity tag:-

<link-entity name="opt_accountplan" from="opt_account" to="accountid" visible="false" link-type="outer" alias="accountplan" enableprefiltering="true" prefilterparametername="CRM_FilteredAccountPlan">

where I am using the following filter:-

  &lt;filter type="and"&gt;
   &lt;condition attribute="statecode" operator="eq" value="0" /&gt;
   &lt;condition attribute="opt_name" operator="eq" value="@CRM_FilteredAccountPlan" /&gt;
  &lt;/filter&gt;   
link|improve this question
The report parameter tags did not appear in my post for some reason?? I am putting them right here... <ReportParameters> <ReportParameter Name="CRM_FilteredAccount"> <DataType>String</DataType> <Prompt>CRM_FilteredAccount</Prompt> </ReportParameter> <ReportParameter Name="CRM_FilteredAccountPlan"> <DataType>String</DataType> <Prompt>CRM_FilteredAccountPlan</Prompt> </ReportParameter> </ReportParameters> – Arthur Jun 29 '11 at 22:58
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.