Table 1471 Product Video Category, source in 24

Source2425metadata in 24

src/System Application/App/Guided Experience/src/Assisted Setup/ProductVideoCategory.Table.al56 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;

table 1471 "Product Video Category"
{
    Access = Internal;
    Caption = 'Product Video Category';
    ObsoleteState = Removed;
    ObsoleteReason = 'Videos are not categorized any more in this way. The Video module handles the full listing.';
    ObsoleteTag = '19.0';
    ReplicateData = false;

    fields
    {
        field(1; ID; Integer)
        {
            DataClassification = SystemMetadata;
            AutoIncrement = true;
            Caption = 'ID';
            Editable = false;
        }
        field(2; Category; Option)
        {
            DataClassification = SystemMetadata;
            Caption = 'Category';
            OptionCaption = ' ,Getting Started,,Finance & Bookkeeping,Sales,Reporting & BI,Inventory Management,Project Management,Workflows,Services & Extensions,Setup,Warehouse Management';
            OptionMembers = " ","Getting Started",,"Finance & Bookkeeping",Sales,"Reporting & BI","Inventory Management","Project Management",Workflows,"Services & Extensions",Setup,"Warehouse Management";
        }
        field(3; "Assisted Setup ID"; Integer)
        {
            DataClassification = SystemMetadata;
            Caption = 'Assisted Setup ID';
            TableRelation = "Guided Experience Item"."Object ID to Run";
        }
        field(4; "Alternate Title"; Text[250])
        {
            DataClassification = CustomerContent;
            Caption = 'Alternate Title';
        }
    }

    keys
    {
        key(Key1; "Assisted Setup ID", Category)
        {
            Clustered = true;
        }
    }

}