Table 5834 Marketing Text Attributes, source in 29

Source29

src/Layers/W1/BaseApp/Inventory/MarketingText/MarketingTextAttributes.Table.al41 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.Inventory.MarketingText;

table 5834 "Marketing Text Attributes"
{
    TableType = Temporary;
    DataClassification = CustomerContent;

    fields
    {
        field(1; Selected; Boolean)
        {
            ToolTip = 'Specifies if the attribute should be used to generate the marketing text.';
            DataClassification = SystemMetadata;
        }

        field(2; Property; Text[2048])
        {
            ToolTip = 'Specifies the name of the attribute.';
            DataClassification = CustomerContent;
        }

        field(3; Value; Text[2048])
        {
            ToolTip = 'Specifies the value of the attribute.';
            DataClassification = CustomerContent;
        }
    }

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