Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Prototyping/Item.TableExt.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
tableextension 50100 "PV Item Ext" extends Item
{
fields
{
field(50100; "FSC License No."; Code[20])
{
Caption = 'FSC License No.';
DataClassification = CustomerContent;
TableRelation = "FSC License".Code;
}
}
}
14 changes: 14 additions & 0 deletions Prototyping/ItemCard.PageExt.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
pageextension 50100 "PV Item Card Ext" extends "Item Card"
{
layout
{
addlast("PrintVis General")
{
field("FSC License No."; Rec."FSC License No.")
{
ApplicationArea = All;
ToolTip = 'Specifies the FSC license number for the item.';
}
}
}
}
Loading