Permission set 1991 Guided Experience - Read in 27

App
System Application
Namespace
System.Environment.Configuration

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Guided Experience/permissions/GuidedExperienceRead.PermissionSet.al39 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Environment.Configuration;
using System.Apps;
using System.Environment;
using System.Globalization;
using System.Reflection;
using System.Security.AccessControl;

permissionset 1991 "Guided Experience - Read"
{
    Access = Public;
    Assignable = false;

    IncludedPermissionSets = "Guided Experience - Objects",
                             "Translation - Read";

    Permissions = tabledata AllObj = r,
                  tabledata AllObjWithCaption = r,
                  tabledata "All Profile" = r,
                  tabledata "Checklist Item" = R,
                  tabledata "Checklist Item Buffer" = r, // needed for Checklist page to be searchable
                  tabledata "Checklist Item Role" = R,
                  tabledata "Checklist Item User" = R,
                  tabledata "Checklist Setup" = R,
                  tabledata Company = r,
                  tabledata "Guided Experience Item" = R,
                  tabledata "Media" = R,
                  tabledata "Primary Guided Experience Item" = r,
                  tabledata "Published Application" = R,
                  tabledata "Spotlight Tour Text" = r,
                  tabledata User = r,
                  tabledata "User Checklist Status" = R,
                  tabledata "User Personalization" = r;
}