I want to create case report in Dynamics CRM 2011. That show all cases of a Team.
How can I filter this filter in fetch-XML Query.
Two options:
<entity name="team" enableprefiltering="true">
This will allow the user to select which Teams to run the query against using Advanced Find like functionality. They can also execute reports like this from the Team List View or Form to automatically filter the results by the selected Team records.<filter type="and">
<condition attribute="teamid" operator = 'in' value="@Team"/>
</filter>