Table extension 6453 Serv. Item Templ., source in 29
Source29
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;
}
}
}