Skip to main content

Dynamics CRM TimeZones

·46 words·1 min
Markus Konrad
Author
Markus Konrad
Blogger, Tekkie, Consultant, Developer
Table of Contents

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:

  • CSV

  • Excel

Cheers