Skip to main content

Notifications

Microsoft Dynamics CRM (Archived)

How to retrieve the Shared Views of a SystemUser?

Posted on by Microsoft Employee

Hello,

im trying give the user of my app a dropdown with all their views as well as their shared views from other users.

Now i know how to get a users personal views and it works fine but when i get to the part where i have to get the Shared Views i seem to not be able to find a way.

So first of all here the Code i have right now:

        public List<Views> GetUserOwnedAccountViews(Guid sysuserID, bool includeFetchXML)
        {
            List<Views> allViews = new List<Views>();

            FilterExpression filter = new FilterExpression();
            filter = new FilterExpression();
            filter.FilterOperator = LogicalOperator.And;
            ConditionExpression cex = new ConditionExpression("returnedtypecode", ConditionOperator.Equal, 10092);
            filter.Conditions.Add(cex);
            ConditionExpression cex2 = new ConditionExpression("ownerid", ConditionOperator.Equal, sysuserID);
            filter.Conditions.Add(cex2);

            QueryExpression query = new QueryExpression()
            {
                Distinct = false,
                EntityName = UserQuery.EntityLogicalName,
                ColumnSet = new ColumnSet("name", "userqueryid", "description", "fetchxml", "returnedtypecode", "ownerid"),
                Criteria = filter
            };

            EntityCollection result = _service.RetrieveMultiple(query);
            foreach (Entity entity in result.Entities)
            {
                UserQuery sq = entity.ToEntity<UserQuery>();

                Views vw = new Views();
                vw.Id = sq.Id.ToString();
                vw.Name = sq.Name;
                vw.Description = sq.Description;
                if (includeFetchXML)
                {
                    vw.Query = sq.FetchXml;
                }
                allViews.Add(vw);
            }       

            return allViews;
        }

Now how could i get the SharedViews of the user?

I read a few Posts and found out that apparantly "Shared Records/Views" are saved in something called "PrincipalObejctAccess" but i don't know how to use that.

*This post is locked for comments

  • Suggested answer
    Radu Chiribelea Profile Picture
    Radu Chiribelea 6,667 on at
    RE: How to retrieve the Shared Views of a SystemUser?

    Hi Maximilian.

    I don't know if you can do a join with the PrincipalObjectAccess table. But you can try to iterate through each user view and use this request docs.microsoft.com/.../gg308215(v%3Dcrm.8)

    Hope this helps,

    Radu

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Community AMA December 12th

Join us as we continue to demystify the Dynamics 365 Contact Center

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,240 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,149 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans