Table 8703 Feature Uptake in 27

App
System Application
Namespace
System.Telemetry

Fields, 4Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Telemetry/src/Feature Telemetry/FeatureUptake.Table.al42 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.Telemetry;

table 8703 "Feature Uptake"
{
    Access = Internal;
    InherentEntitlements = rimdX;
    InherentPermissions = rimdX;

    fields
    {
        field(1; "Feature Name"; Text[250])
        {
            NotBlank = true;
            DataClassification = SystemMetadata;
        }
        field(2; "User Security ID"; Guid)
        {
            DataClassification = EndUserPseudonymousIdentifiers;
        }
        field(3; Publisher; Text[250])
        {
            DataClassification = SystemMetadata;
        }
        field(4; "Feature Uptake Status"; Enum "Feature Uptake Status")
        {
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(PrimaryKey; "Feature Name", "User Security ID", Publisher)
        {
            Clustered = true;
        }
    }
}

Fields, 4

IdNameTypeObsolete
1Feature NameText[250]-
2User Security IDGuid-
3PublisherText[250]-
4Feature Uptake StatusEnum Feature Uptake Status-

Keys, 1

NameFieldsObsolete
PrimaryKey, clusteredFeature Name, User Security ID, Publisher-