I am creating a view and have tried to get the correct search created, but the results are unexpected. Basically I need to find all records that have been created in the last x months. I created my query:

    <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
  <entity name="new_object">
    <attribute name="new_name" />
    <attribute name="new_dateactivated" />
    <attribute name="new_currentstatus" />
    <attribute name="new_contactid" />
    <attribute name="new_accountid" />
    <attribute name="new_referralsource" />
    <order attribute="new_dateactivated" descending="true" />
    <filter type="and">
      <filter type="or">
        <condition attribute="new_dateenrolled" operator="this-month" />
        <condition attribute="new_dateenrolled" operator="last-x-months" value="2" />
      </filter>
      <condition attribute="ownerid" operator="eq" uiname="---" uitype="systemuser" value="---" />
    </filter>
  </entity>
</fetch>

But when I see the results in a chart/advanced find it only shows the results from the previous 60 days. For example if I run the search right now on Dec 23, it will show all the results from Oct 23 to today. I don't want that, I want to see all the results from Oct 1 to today. It seems as if it is running on a sliding scale or using a really simple function "Last X Months = X * 30"

Can I create a custom search criteria or change the way Dynamics runs this "Last X Months" search?

link|improve this question

45% accept rate
feedback

1 Answer

I think it takes all the records from today's day X months ago (for today, the 24th of X months ago). But anyway, I think MS would have to add to FetchXml schema to include the first day X months ago, since it doesn't exist now. (Incidentally, the "Last Month" condition accomplishes what you're looking for, but it only does it for the last month, not for any Xth month ago.)

So I don't think it's possible to intercept the logic behind the "Last X Months" condition, as I'm betting it's wrapped in some core assembly somewhere. However, you can intercept the FetchXml passed to a subgrid via jscript or a report via the VB in the report builder. (It may also be possible for charts, but that's uncharted territory for me.)

link|improve this answer
1  
Yea I'm a bit familiar with intercepting Fetch xml passed to a subgrid, quite handy. That's disappointing that MS doesn't support the Last X Months the way I want it to. I will have to dig a bit more and see if there is any other way to modify the system. Thanks. – Steve Dec 27 '11 at 17:04
@Steve - yeah, it's a great question, so if you eventually find a way to bypass the default CRM logic, definitely post another answer. – Peter Majeed Dec 29 '11 at 5:05
Still struggling with this. I have resolve myself to creating a custom web resource and just using a dynamic FetchXML – Steve Jan 7 at 2:12
@Steve: I commented in your other recent question as to modifying the visualization's FetchXml, where I said I believe it's impossible, but please do share as an answer what you end up doing for your end solution and dynamic FetchXml, as I at least would be interested. – Peter Majeed Jan 7 at 5:12
feedback

Your Answer

 
or
required, but never shown

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