Hi Nitin,
Thanks for your reply !
tableextension 50115 RetailWinterSportsStore extends Customer
for ex. tableextension 246 Requisition Line extens ?? --- I want to know here ? what will come? How to find or check?
{
fields
{
field(50116;ShoeSize;Integer)
{
trigger OnValidate();
begin
if (rec.ShoeSize < 0) then
begin
message('Shoe size not valid: %1', rec.ShoeSize);
end;
end;
}
}