Hi
We are trying to customize CRM for a first come, first serve basis.
We are planning to customize a view and use the View Designer available with XRM Toolkit for creating a custom filter.
We would like to return the top record for each account and display in the view.
We are planning to only show the last application for each account in the view.
Our XML would be formatted as follows - I just need to determine how to pass the value for each account.
<fetch top="1" version="1.0" output-format="xml-platform" mapping="logical" distinct="false"> <entity name="new_application"> <attribute name="new_applicationid" /> <attribute name="new_applicationname" /> <attribute name="createdon" /> <order attribute="new_applicationname" descending="false" /> <filter type="and"> <condition attribute="new_accountid" operator="eq" /> </filter> </entity> </fetch>
I would really appreciate any assistance.
Thanks
Regards
Tony