Table 1471 Product Video Category in 25

App
System Application
Namespace
System.Environment.Configuration
Obsolete
Removed 19.0. Videos are not categorized any more in this way. The Video module handles the full listing.

Fields, 4Keys, 1

Versions171819202122232425262728latest

Source2425

Source in 25

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;
        }
    }

}

Fields, 4

IdNameTypeObsolete
1IDInteger-
2CategoryOption-
3Assisted Setup IDInteger-
4Alternate TitleText[250]-

Keys, 1

NameFieldsObsolete
Key1, clusteredAssisted Setup ID, Category-