From a6ef663fbc031e744347468addd77a1d4da87819 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Jun 2026 12:36:12 +0000 Subject: [PATCH 1/2] Add FSC license field on Item Card --- Prototyping/Item.TableExt.al | 12 ++++++++++++ Prototyping/ItemCard.PageExt.al | 14 ++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 Prototyping/Item.TableExt.al create mode 100644 Prototyping/ItemCard.PageExt.al diff --git a/Prototyping/Item.TableExt.al b/Prototyping/Item.TableExt.al new file mode 100644 index 0000000..64e301d --- /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.'; + } + } + } +} From 02599ca4a9bf1941e20729b286773adec9a60f83 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Jun 2026 12:36:46 +0000 Subject: [PATCH 2/2] Fix FSC field caption casing --- Prototyping/Item.TableExt.al | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Prototyping/Item.TableExt.al b/Prototyping/Item.TableExt.al index 64e301d..41fdf73 100644 --- a/Prototyping/Item.TableExt.al +++ b/Prototyping/Item.TableExt.al @@ -4,7 +4,7 @@ tableextension 50100 "PV Item Ext" extends Item { field(50100; "FSC License No."; Code[20]) { - Caption = 'FSC license No.'; + Caption = 'FSC License No.'; DataClassification = CustomerContent; TableRelation = "FSC License".Code; }