Table 5720 Manufacturer, source in 29

Source29

src/Layers/W1/BaseApp/Inventory/Item/Catalog/Manufacturer.Table.al44 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.Item.Catalog;

table 5720 Manufacturer
{
    Caption = 'Manufacturer';
    LookupPageID = Manufacturers;
    DataClassification = CustomerContent;

    fields
    {
        field(10; "Code"; Code[10])
        {
            Caption = 'Code';
            ToolTip = 'Specifies the code you want to use for the manufacturer.';
            NotBlank = true;
        }
        field(20; Name; Text[50])
        {
            Caption = 'Name';
            ToolTip = 'Specifies the name of the manufacturer.';
        }
    }

    keys
    {
        key(Key1; "Code")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
        fieldgroup(DropDown; "Code", Name)
        {
        }
    }
}