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
Saturday, May 21, 2016
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
Cheers
msxrmtools
Fetch XML sample |
QueryString analyzer sample |
Subscribe to:
Posts (Atom)