Tagged Questions

For more information please refer to MSDN

learn more… | top users | synonyms

5
votes
6answers
4k views

How do you handle the fetchxml result data?

I have avoided working with fetchxml as I have been unsure the best way to handle the result data after calling crmService.Fetch(fetchXml). In a couple of situations, I have used an XDocument with ...
3
votes
3answers
7k views

How to Execute FetchXML in CRM 2011 using a CRM 2011 webservice and JavaScript?

I want to execute FetchXML queries in a CRM 2011 environment using the CRM 2011 SOAP web services and JavaScript. I have found a number of articles like this one showing how to use the 4.0 web ...
3
votes
1answer
1k views

Are composite joins possible using FetchXml in Microsoft Dynamics CRM 4.0?

I am using FetchXml to query CRM 4.0. We have a special case that will require a composite join between CRM entites. The FetchXml schema indicates that multiple link-entity elements are allowed, and ...
2
votes
1answer
371 views

FetchXML OR Condition

I have a FetchXML query and I have it so if participationtypemask equals 5 than it puts the users with a participationtypemask of 5 in the Required Column. But I also want to add it so if a user has ...
2
votes
1answer
121 views

Return NULLS in FetchXML

I am querying data from CRM 2011 using FetchXML to build a report in SSRS 2008. My query works, but it won't return records that link to a entity that is null. This is my Query: <fetch> ...
2
votes
2answers
314 views

Select a percentage of records using CRM 2011 Dynamic Entity

I'm developing service which consumes CRM 2011 data via dynamic entities (as in, Microsoft.Xrm.Sdk.Entity, the late-binding method). I'm deliberately not using Xrm.cs method (early binding) in an ...
2
votes
1answer
856 views

Left join in FetchXml?

How do i do a left join using FetchXml? Consider a simple SQL query like the following: select person.name, address.city from person left join address on person.addressid = address.addressid How ...
1
vote
1answer
276 views

Date Parameters in FetchXML

I am using FetchXML in SSRS 2008 to create a report from CRM 2011. I want to have parameters in the report so you can show the records between From Date - To Date. This is the Query I have so far. ...
1
vote
1answer
208 views

FetchXML Greater Than

I am using FetxhXML and I want the condition to be greater than a certain number of hours. This is what I have: string groupby1 = "<fetch distinct='false' mapping='logical' aggregate='true'>" ...
1
vote
0answers
1k views

MS CRM 2011 FetchXml - Report Parameters don't get picked up when the report is deployed in CRM

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 ...
1
vote
1answer
339 views

Is it possible to limit the amount of results returned in a response when using a QueryExpression in CRM 4

Basically I have a QueryExpression that returns over 3000 results. I only need to use between 50 and 200 of these. If I was using normal sql I could use SELECT TOP 200..... Is there a way to do this ...
0
votes
3answers
148 views

QueryExpression vs. FetchXml CRM2011

We found out that Linq for CRM 2011 is horribly broken - it seems to have gotten in without any QA performed on it. An indicator as how badly broken the provider is a query like .Where(x => x== "b") ...
0
votes
1answer
133 views

How to write QueryExpression for following query?

I am trying to write a plugin in dynamics crm 4.0. following is my fetch query which working fine. I tested on fetchxml Builder. but when I am trying to convert into QueryExpression it is not returing ...
0
votes
1answer
305 views

Query CRM 2011 with Outer Join

I am using the code below to query the appointment set in CRM 2011. When I use this query it returns the data, but it returns duplicates. If I take out the Outer joins it doesn't return anything at ...
0
votes
3answers
201 views

Why isn't he fetchXml count attribute limiting the records returned?

I have a javascript function that adds a custom view to a control using fetchXML. My issue is that the count attribute on the root <fetch> node is not working. I have it set to 6, but it's ...
0
votes
0answers
178 views

CRM 2011 Get Required and Optional Contact Names from ActivityPartySet

I am trying to create a report in SSRS for CRM 2011 and I am trying to get information from the AppointmentSet. I am able to get everything expect the Required and Optional Attendees. I'm pretty sure ...
0
votes
2answers
900 views

Using FetchXML in CRM 2011

I am using FetchXML and I am grouping and using count for two of the entities but the rest of the entities I don't need grouped I just need the data to be pulled down. For example this is my code: ...
0
votes
1answer
188 views

How do you parse the result of a FetchXML request?

How could I parse the result of the following FetchXML request? string fetch_checkEntity = @" <fetch mapping='logical'> <entity name='" + entityname + @"'> ...
0
votes
2answers
88 views

influencing CRM generated SQL (optimizer hints, etc)

We have a client that is using CRM against a very large database. They are experiencing slowdowns on out of the box actions, and we observe blocked SPIDs during these slowdowns. We captured the SQL ...
0
votes
1answer
282 views

Convert Linq expression to QueryExpression or FetchXML

My ultimate goal is to convert a linq expression to fetch xml. I intend on using the fetch XML for custom grids in MS CRM 2011. From this article, I can convert a QueryExpression to FetchXML ...
0
votes
1answer
347 views

Can you write a single FetchXML query to get 1:many relationship?

Is it possible to write a single FetchXML query that gets a root entity and multiple children? All I've been able to do is 1:1.