ELI5 How to add a field to Business Central / Getting started with customization

Описание к видео ELI5 How to add a field to Business Central / Getting started with customization

Find more information at my blog https://www.hougaard.com or follow me on   / ehougaard  

tableextension 50100 "My Item Field" extends Item
{
fields
{
field(50100; "Last Counted"; Date)
{
Caption = 'Last Counted';
DataClassification = ToBeClassified;
}
}
}

pageextension 50100 "Field on item card" extends "Item Card"
{
layout
{
addfirst(InventoryGrp)
{
field("Last Counted"; Rec."Last Counted")
{
ApplicationArea = all;
}
}
}
}

Комментарии

Информация по комментариям в разработке