Posts

Showing posts with the label user current setting in Microsoft CRM

Retrieve User Settings such as Time Zone code or Localize Id in MSCRM 2011

Hi, You may need connected user settings or any user that you have ID. Please follow below;  var currentUserSettings = _serviceProxy.RetrieveMultiple(                 new QueryExpression(UserSettings.EntityLogicalName)                 {                     ColumnSet = new ColumnSet("localeid", "timezonecode"),                     Criteria = new FilterExpression                     {                         Conditions =                         {                             new ConditionExpression("systemuserid", ConditionOperator.Equal,UserID)                         }                     }                 }).Entities[0].ToEntity ();             //currentUserSettings.LocaleId;             currentUserSettings.TimeZoneCode.Value; //get TimeZoneCode good luck,