Table 9000 User Group

App
Base Application
Namespace
System.Security.AccessControl
Versions
17-28
Obsolete
Removed 25.0, seen from 22. [220_UserGroups] Replaced by the Security Group table and Security Group codeunit in the security groups system; by Tenant Permission Set table in the permission sets system. To learn more, go to https://go.microsoft.com/fwlink/?linkid=2245709.

Fields, 7Keys, 1Procedures, 4Obsolete, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/System/UserGroups/Replaced/UserGroup.Table.al64 lines, Copyright (c) Microsoft Corporation. MIT

#if not CLEANSCHEMA25 
namespace System.Security.AccessControl;

using System.Reflection;

table 9000 "User Group"
{
    Caption = 'User Group';
    DataPerCompany = false;
    ReplicateData = false;
    ObsoleteState = Removed;
    ObsoleteTag = '25.0';
    ObsoleteReason = '[220_UserGroups] Replaced by the Security Group table and Security Group codeunit in the security groups system; by Tenant Permission Set table in the permission sets system. To learn more, go to https://go.microsoft.com/fwlink/?linkid=2245709.';
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Code"; Code[20])
        {
            Caption = 'Code';
            NotBlank = true;
        }
        field(2; Name; Text[50])
        {
            Caption = 'Name';
        }
        field(3; "Default Profile ID"; Code[30])
        {
            Caption = 'Default Profile ID';
            TableRelation = "All Profile"."Profile ID";
        }
        field(4; "Assign to All New Users"; Boolean)
        {
            Caption = 'Assign to All New Users';
        }
        field(5; Customized; Boolean)
        {
            Caption = 'Customized';
            Editable = false;
        }
        field(6; "Default Profile App ID"; Guid)
        {
            Caption = 'Default Profile App ID';
        }
        field(7; "Default Profile Scope"; Option)
        {
            Caption = 'Default Profile Scope';
            OptionCaption = 'System,Tenant';
            OptionMembers = System,Tenant;
        }
    }

    keys
    {
        key(Key1; "Code")
        {
            Clustered = true;
        }
    }
}

 
#endif