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,

Comments

Popular posts from this blog

Could not load file or assembly 'System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. The system cannot find the file specified at Configuration class initiation in CrmServiceHelper.cv

Exception caught instantiating TERADATA report server extension SQL Reporting Services

you face "ISV code aborted the operation" when you change status of the any record in Dynamics CRM 2013