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 returning 26 records (all of the records), defined by the fetch.

Here is the fetchXML

<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false' count='6'>
  <entity name='xyz_entity'>
    <attribute name='xyz_entityname' />
    <attribute name='xyz_startdate' />
    <attribute name='xyz_enddate' />
    <attribute name='xyz_currententity' />
    <attribute name='xyz_inactiveentity' />
    <order attribute='xyz_currententity' descending='true' />
    <order attribute='xyz_startdate' />
    <filter type='or'>
      <condition attribute='xyz_currententity' operator='eq' value='1' />
      <filter type='and'>
        <condition attribute='xyz_startdate' operator='ge' value='2011-11-01' />
        <condition attribute='xyz_enddate' operator='gt' value='2011-11-01' />
      </filter>
    </filter>
  </entity>
</fetch>

And the fetchXML is being used in the javscript like this:

Xrm.Page.getControl("itt_termid").addCustomView(viewId, entityName, viewDisplayName, fetchXml, layoutXml, true);

but when the user clicks on the lookup icon, all 26, rather than 6 records get returned.

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

Users can specify how many records they want to appear per page, and since the control has to do paging of its own, my guess would be that it's replacing your count with its own. If you run this fetch outside of the context of a lookup view, does it correctly limit the count?

link|improve this answer
What's the easiest way to do that? This is my first time working with CRM – Daryl Nov 2 '11 at 19:13
Harris-Tech have a good blog about creating custom views for lookups - I think you could follow along: harris-tech.com/blogs/bid/54720/… – glosrob Nov 2 '11 at 19:38
@Daryl The easiest way would be to download Stunnware tools (stunnware.com/products/tools4/download.htm) and hook that up to your environment to test. The tools were originally designed for CRM 4, but they also work against CRM 2011. – Matt Nov 2 '11 at 21:44
My fetch works correctly in stunnware. Although I truly believe this to be a bug in CRM 2011, I'm awarding @Matt the answer for the stunnware suggestion. It truly was the information I needed to answer my question. Thanks! – Daryl Nov 3 '11 at 13:17
Looks like besides ignoring the count of the fetch XML, the custom view also ignores any Ordering – Daryl Nov 3 '11 at 13:24
feedback

Have you tried explicitly specifying the page number (as 1) ?

Something like

<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false'     page='1' count='6'>
link|improve this answer
yep. nothing doing... – Daryl Nov 2 '11 at 19:12
As @Matt says in his answer, have you tried running this outside the context of a lookup view to see if the correct number of results are returned? – glosrob Nov 2 '11 at 19:25
feedback

This appears to be a bug in the Custom Views for CRM 2011. It also doesn't support order by as referenced by this page: http://social.microsoft.com/Forums/en/crmdevelopment/thread/81537133-b3a7-457b-a257-b745b30ca98e

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.