Table extension 6453 Serv. Item Templ.

App
Base Application
Namespace
Microsoft.Inventory.Item
Versions
25-28
Extends
Item Templ.

Fields, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Service/Item/ServItemTempl.TableExt.al26 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;

using Microsoft.Service.Item;

tableextension 6453 "Serv. Item Templ." extends "Item Templ."
{
    fields
    {
        field(5900; "Service Item Group"; Code[10])
        {
            Caption = 'Service Item Group';
            DataClassification = CustomerContent;
            TableRelation = "Service Item Group".Code;

            trigger OnValidate()
            begin
                ValidateItemField(FieldNo("Service Item Group"));
            end;
        }
    }
}