Gestire i Local DataGroup nel CRM4.0 non è certo cosa semplice, visto che bisogna configurarli per ogni singolo client su cui è installato il crm outlook client.
Purtroppo ancora non cè un modo centralizzato da dove poter andare a settare i LDG, ma si può andare sul DB a capire la configurazione per ogni client, quindi controllare che sia corretta, con una query del tipo:
SELECT
SU.fullname,
SU.mp_code,
SU.businessunitidname,
UQB.name,
UQB.FetchXml
FROM
[OrgName_MSCRM].[dbo].UserQueryBase UQB
INNER JOIN [OrgName_MSCRM].[dbo].SystemUser SU ON SU.SystemUserId = UQB.OwningUser
WHERE SU.IsDisabled = 0
AND UQB.DeletionStateCode = 0
AND UQB.StateCode = 0
AND ISNULL(UQB.StatusCode, 0) <> 2
AND UQB.QueryType = 16
AND UQB.FetchXml LIKE '%eq-userid%'
AND UQB.name LIKE 'my%'
AND UQB.name NOT IN (
'My Area Managers',
'My Contracts',
'My Importers',
'My LogEntities',
'My OnlyForTests',
'My Recent Case Resolution Activities',
'My Recent Cases',
'My Recent Invoices',
'My Recent Opportunities',
'My Recent Opportunity Close Activities',
'My Recent Order Close Activities',
'My Recent Orders',
'My Recent Quote Close Activities',
'My Recent Quotes',
'My Visibility Tables'
)
ORDER BY
1,4
OPPURE
SELECT
SU.fullname,
SU.mp_code,
SU.businessunitidname,
COUNT(*) groups
FROM
[OrgName_MSCRM].[dbo].UserQueryBase UQB INNER JOIN
[OrgName_MSCRM].[dbo].SystemUser SU ON SU.SystemUserId = UQB.OwningUser
WHERE
SU.IsDisabled = 0
AND UQB.DeletionStateCode = 0
AND UQB.StateCode = 0
AND ISNULL(UQB.StatusCode, 0) <> 2
AND UQB.QueryType = 16
AND UQB.FetchXml LIKE '%eq-userid%'
AND UQB.name LIKE 'my%'
AND UQB.name NOT IN (
'My Area Managers',
'My Contracts',
'My Importers',
'My LogEntities',
'My OnlyForTests',
'My Recent Case Resolution Activities',
'My Recent Cases',
'My Recent Invoices',
'My Recent Opportunities',
'My Recent Opportunity Close Activities',
'My Recent Order Close Activities',
'My Recent Orders',
'My Recent Quote Close Activities',
'My Recent Quotes',
'My Visibility Tables'
)
GROUP BY
SU.fullname,
SU.mp_code,
SU.businessunitidname
ORDER BY
4,1