diff --git a/Prototyping/Item.TableExt.al b/Prototyping/Item.TableExt.al new file mode 100644 index 0000000..41fdf73 --- /dev/null +++ b/Prototyping/Item.TableExt.al @@ -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; + } + } +} diff --git a/Prototyping/ItemCard.PageExt.al b/Prototyping/ItemCard.PageExt.al new file mode 100644 index 0000000..6ada15e --- /dev/null +++ b/Prototyping/ItemCard.PageExt.al @@ -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.'; + } + } + } +}