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
28 changes: 28 additions & 0 deletions Prototyping/Page 50100 PVS FSC License List.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
page 50100 "PVS FSC License List"
{
Caption = 'FSC License List';
PageType = List;
SourceTable = "PVS FSC License";
UsageCategory = Lists;
ApplicationArea = All;

layout
{
area(Content)
{
repeater(Control1)
{
field("Code"; Rec."Code")
{
ApplicationArea = All;
ToolTip = 'Specifies the FSC license code.';
}
field(Description; Rec.Description)
{
ApplicationArea = All;
ToolTip = 'Specifies the description of the FSC license.';
}
}
}
}
}
16 changes: 16 additions & 0 deletions Prototyping/PageExt 50100 PVS Item Card Ext.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
pageextension 50100 "PVS Item Card Ext" extends "Item Card"
{
layout
{
addafter("PVS ECO Label Code")
{
field("PVS FSC License No."; Rec."PVS FSC License No.")
{
ApplicationArea = All;
Caption = 'FSC License No.';
ToolTip = 'Specifies the FSC license number assigned to this item.';
LookupPageId = "PVS FSC License List";
}
}
}
}
26 changes: 26 additions & 0 deletions Prototyping/Table 50100 PVS FSC License.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
table 50100 "PVS FSC License"
{
Caption = 'FSC License';
DataClassification = CustomerContent;
LookupPageId = "PVS FSC License List";

fields
{
field(1; "Code"; Code[20])
{
Caption = 'Code';
}
field(2; Description; Text[100])
{
Caption = 'Description';
}
}

keys
{
key(PK; "Code")
{
Clustered = true;
}
}
}
12 changes: 12 additions & 0 deletions Prototyping/TableExt 50100 PVS Item Ext.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
tableextension 50100 "PVS Item Ext" extends Item
{
fields
{
field(50100; "PVS FSC License No."; Code[20])
{
Caption = 'FSC License No.';
DataClassification = CustomerContent;
TableRelation = "PVS FSC License";
}
}
}
Loading