Monday, February 7, 2011

Hiding System User Views

System user view are stored in SavedQueryBase table.
If you want to hide a view there is a field names IsPrivate and if you set the value to 1 it will be hidden.
Please note that this is an unsupported customization.

update SavedQueryBase
set IsPrivate = 1
where SavedQueryId =''

No comments:

Post a Comment

Retrieving Calendar of a Bookable Resource in Dynamics

There are occasions where we need to retrieve working days and working times of a resource in Dynamics grammatically. This is quite possible...