diff --git a/app/src/page/Conferencelocationlist.Page.al b/app/src/page/Conferencelocationlist.Page.al new file mode 100644 index 0000000..b5cbb4e --- /dev/null +++ b/app/src/page/Conferencelocationlist.Page.al @@ -0,0 +1,73 @@ +page 50000 "Conferencelocationlist ASD" +{ + Caption = 'Conference Location'; + PageType = List; + UsageCategory = Lists; + ApplicationArea = All; + SourceTable = "Conference Location ASD"; + CardPageId = "Conference Location Card ASD"; + + layout + { + area(Content) + { + repeater(Group) + { + field("No."; Rec."No.") + { + ApplicationArea = All; + } + field(Name; Rec.Name) + { + ToolTip = 'Specifies the value of the Name field.', Comment = '%'; + } + field(Address; Rec.Address) + { + ToolTip = 'Specifies the value of the Address field.', Comment = '%'; + } + field("Address 2"; Rec."Address 2") + { + ToolTip = 'Specifies the value of the Address 2 field.', Comment = '%'; + } + field(City; Rec.City) + { + ToolTip = 'Specifies the value of the City field.', Comment = '%'; + } + field("Country/Region Code"; Rec."Country/Region Code") + { + ToolTip = 'Specifies the value of the Country/Region Code field.', Comment = '%'; + } + field("Base Unit of Measure"; Rec."Base Unit of Measure") + { + ToolTip = 'Specifies the value of the Base Unit of Measure field.', Comment = '%'; + } + field("Unit Price"; Rec."Unit Price") + { + ToolTip = 'Specifies the value of the Unit Price field.', Comment = '%'; + } + + } + } + area(Factboxes) + { + systempart(Links; Links) { } + systempart(Notes; Notes) { } + } + } + + actions + { + area(Processing) + { + action(ActionName) + { + ApplicationArea = All; + + trigger OnAction(); + begin + + end; + } + } + } +} \ No newline at end of file