If you see something similar when you open your CRM Organization that means that for some reason MS decided to limit your possibility to see location of contact, account or other record on map:
To fix it do following steps:
1. Connect to SQL Server where DBs are located.
2. Open SQL Management Studio and execute following query against your CRM DB:
Select LocaleId From Organization
3. Execute following query against MSCRM_Config DB:
Select NVarCharColumn From ServerSettingsProperties Where ColumnName = 'AvailableBingMapLocales'
4. Write and execute script to update list of locales using following template:
Update ServerSettingsProperties Set NVarCharColumn = 'Value from step 3;Value from step 2' Where ColumnName = 'AvailableBingMapLocales'
Update ServerSettingsProperties Set NVarCharColumn = 'cs-CZ;da-DK;nl-BE;nl-NL;en-AU;en-CA;en-IN;en-GB;en-US;fi-FI;fr-CA;fr-FR;de-DE;it-IT;ja-JP;nb-NO;pt-BR;pt-PT;es-MX;es-ES;es-US;sv-SE;ru-RU' Where ColumnName = 'AvailableBingMapLocales'
PS This modifications are unsupported and mentioned changes can harm your deployment. Use it own risk.
No comments:
Post a Comment