Table 6313 Power BI Selection Element

App
Base Application
Namespace
System.Integration.PowerBI
Versions
19-28

Fields, 7Keys, 2

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Modules/System/PowerBI/Embedding/PowerBISelectionElement.Table.al62 lines, Copyright (c) Microsoft Corporation. MIT

namespace System.Integration.PowerBI;

/// <summary>
/// Represents a Power BI Element (such as report, workspace or dashboard) as returned by the Power BI backend.
/// </summary>
table 6313 "Power BI Selection Element"
{
    Caption = 'Power BI Selection Element';
    TableType = Temporary;
    ReplicateData = false;
    DataClassification = CustomerContent;

    fields
    {
        field(1; ID; Guid)
        {
            Caption = 'ID';
            DataClassification = EndUserPseudonymousIdentifiers;
        }
        field(2; "Type"; Enum "Power BI Element Type")
        {
            Caption = 'Type';
            DataClassification = SystemMetadata;
        }
        field(5; Name; Text[200])
        {
            Caption = 'Name';
            DataClassification = CustomerContent;
        }
        field(7; Enabled; Boolean)
        {
            Caption = 'Enabled';
            DataClassification = SystemMetadata;
        }
        field(10; EmbedUrl; Text[2048])
        {
            Caption = 'EmbedUrl';
            DataClassification = CustomerContent;
        }
        field(20; WorkspaceID; Guid)
        {
            Caption = 'Workspace ID';
            DataClassification = EndUserPseudonymousIdentifiers;
        }
        field(21; WorkspaceName; Text[200])
        {
            Caption = 'Workspace Display Name';
            DataClassification = CustomerContent;
        }
    }

    keys
    {
        key(Key1; ID, Type)
        {
            Clustered = true;
        }
        key(Key2; WorkspaceID, Type, Name)
        {
        }
    }
}