Hello SHI_IT.
I guess you want to add the table extension field in item card page..
To add the field in item table
tableextension 50101 itemTableExtension extends Item
{
fields
{
field(50100; YourField; Code[20])
{
DataClassification = ToBeClassified;
}
}
}
Then make the extension of the Item Card Page.
pageextension 50103 CustomerCardExtension extends "Item Card"
{
layout
{
addbefore(Item)
{
group(MyGroup)
{
Caption = 'My Group';
field(myField; Rec."myField")
{
ApplicationArea = All;
Importance = Standard;
Caption = 'My Field';
}
}
}
}
}
Thanks and Regards.
People