Saturday, May 21, 2016

Dynamics CRM TimeZones

To retrieve timezone records for Dynamics CRM you can use following request.

IOrganizationService service = con.GetOrganizationService();
QueryExpression query = new QueryExpression("timezonedefinition");
query.ColumnSet = new ColumnSet(true);
EntityCollection col = service.RetrieveMultiple(query);

You can find a list (exported from 2016 online) here:
Cheers

Monday, March 21, 2016

Online toolbox "msxrmtools.com"

Today i found a nice little helper. It provides metadata browser, FetchXML tester, Url QueryString Analyzer and other helpful features. And all of that without importing solutions to your organization or running local applications.

msxrmtools

Fetch XML sample

QueryString analyzer sample
Cheers