--
Matt Parks
MVP - Microsoft CRM
"MikeyM" <Mik...@discussions.microsoft.com> wrote in message
news:4D718226-4F2F-420E...@microsoft.com...
Hi!
In CRM, we can create multiple views for an entity and are able to set a
default view for that entity. Does anyone knows how and where CRM stores
that
information? I am very curious to know if they are being store anywhere and
that it is possible to set the default view depending on each situation.
--
Mikey M.
select fetchxml,name,isdefault,querytype from savedquery
where returnedtypecode like '1' and querytype like 0
update savedquery set isdefault=0 where
returnedtypecode like '1' and querytype like 0 and name like 'my
active%'
update savedquery set isdefault=1 where
returnedtypecode like '1' and querytype like 0 and name like
'inactive%'
1. Depending on user level who's logged on, I would like to set a certain
view as a default view.
2. I am intergrating CRM with Sharepoint Services. On my Sharepoint site, I
am showing Account and Contact views. When user selects a view from either
Account or Contact view, I would like to set the default view for the other
to match up with the user selected view.
I figured if I could update the default view would take care of my problem.
Please advise.
--
Mikey M.
--
Matt Parks
MVP - Microsoft CRM
"MikeyM" <Mik...@discussions.microsoft.com> wrote in message
news:3C132CC7-A4EB-49EC...@microsoft.com...