Table 5390 CRM Systemuserroles

App
Base Application
Namespace
Microsoft.Integration.D365Sales
Versions
17-28

Fields, 4Keys, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Integration/D365Sales/CRMSystemuserroles.Table.al66 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 Microsoft.Integration.D365Sales;

table 5390 "CRM Systemuserroles"
{
    // Dynamics CRM Version: 9.1.0.1450

    Caption = 'CRM Systemuserroles';
    ExternalName = 'systemuserroles';
    TableType = CRM;
    DataClassification = CustomerContent;

    fields
    {
        field(1; SystemUserId; Guid)
        {
            Caption = 'SystemUserId';
            DataClassification = SystemMetadata;
            ExternalAccess = Read;
            ExternalName = 'systemuserid';
            ExternalType = 'Uniqueidentifier';
        }
        field(2; RoleId; Guid)
        {
            Caption = 'RoleId';
            DataClassification = SystemMetadata;
            ExternalAccess = Read;
            ExternalName = 'roleid';
            ExternalType = 'Uniqueidentifier';
        }
        field(3; SystemUserRoleId; Guid)
        {
            Caption = 'SystemUserRoleId';
            DataClassification = SystemMetadata;
            Description = 'For internal use only.';
            ExternalAccess = Insert;
            ExternalName = 'systemuserroleid';
            ExternalType = 'Uniqueidentifier';
        }
        field(4; VersionNumber; BigInteger)
        {
            Caption = 'VersionNumber';
            DataClassification = SystemMetadata;
            ExternalAccess = Read;
            ExternalName = 'versionnumber';
            ExternalType = 'BigInt';
        }
    }

    keys
    {
        key(Key1; SystemUserRoleId)
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}