Hi,
Had a requirement to split a List in 3 smaller lists.
For e.g. if a list has 13 different elements.
It has to split into 3 list containing 5, 5 and 3 elements in it.
The helpful post
Hope it helps !
Hi,
Had a requirement to split a List in 3 smaller lists.
For e.g. if a list has 13 different elements.
It has to split into 3 list containing 5, 5 and 3 elements in it.
The helpful post
Hope it helps !
Hi,
Recently had a requirement to document and show stack trace for a particular method to understand the flow
No better way to do it than through code map using Visual Studio
Bye..
Note
The FetchXML query uses the organization’s fiscal year settings for all fiscal date queries.
Using FetchXML fiscal date conditional operators
The following example shows a FetchXML expression that finds all orders fulfilled in the last fiscal period, according to the organization’s fiscal year settings. For example, if the organization uses fiscal months, the query returns orders fulfilled in the last fiscal month. If the organization uses fiscal quarters, the query returns orders fulfilled in the last fiscal quarter. If the organization uses fiscal semesters, orders fulfilled in the last fiscal semester are returned.
<fetch> <entity name="order"> <attribute name="name"/> <filter type="and"> <condition attribute="datefulfilled" operator="last-fiscal-period"/> </filter> </entity></fetch>
The following example shows a…
View original post 319 more words
Looking at the title of the topic, you must be wondering what’s new in here. I think many of us by this time already know that we can clone one record of an entity to create another record easily using the Xrm.Utility.openEntityForm method. For e.g suppose we have an account record and we have a functionality provided to clone the account record. The cloned record would contain the same values and the parent record.
To do this in CRM, all you need to do is the following.
Now comes the big question. Although its pretty simple to copy field values from one record to another using the above method, imagine of a situation where there are lot of fields on the form to clone. Even for that matter there can be situations where the field is not even in the form of the parent record but you would still need…
View original post 145 more words