Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

conference list #35

Merged
merged 1 commit into from
Sep 16, 2024
Merged
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
73 changes: 73 additions & 0 deletions app/src/page/Conferencelocationlist.Page.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
page 50000 "Conferencelocationlist ASD"
{
Caption = 'Conference Location';
PageType = List;
UsageCategory = Lists;
ApplicationArea = All;
SourceTable = "Conference Location ASD";

Check failure on line 7 in app/src/page/Conferencelocationlist.Page.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0185 Table 'Conference Location ASD' is missing
CardPageId = "Conference Location Card ASD";

Check failure on line 8 in app/src/page/Conferencelocationlist.Page.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0185 Page 'Conference Location Card ASD' is missing

layout
{
area(Content)
{
repeater(Group)
{
field("No."; Rec."No.")

Check failure on line 16 in app/src/page/Conferencelocationlist.Page.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0118 The name 'Rec' does not exist in the current context.
{
ApplicationArea = All;
}
field(Name; Rec.Name)

Check failure on line 20 in app/src/page/Conferencelocationlist.Page.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0118 The name 'Rec' does not exist in the current context.
{
ToolTip = 'Specifies the value of the Name field.', Comment = '%';
}
field(Address; Rec.Address)

Check failure on line 24 in app/src/page/Conferencelocationlist.Page.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0118 The name 'Rec' does not exist in the current context.
{
ToolTip = 'Specifies the value of the Address field.', Comment = '%';
}
field("Address 2"; Rec."Address 2")

Check failure on line 28 in app/src/page/Conferencelocationlist.Page.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0118 The name 'Rec' does not exist in the current context.
{
ToolTip = 'Specifies the value of the Address 2 field.', Comment = '%';
}
field(City; Rec.City)

Check failure on line 32 in app/src/page/Conferencelocationlist.Page.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0118 The name 'Rec' does not exist in the current context.
{
ToolTip = 'Specifies the value of the City field.', Comment = '%';
}
field("Country/Region Code"; Rec."Country/Region Code")

Check failure on line 36 in app/src/page/Conferencelocationlist.Page.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0118 The name 'Rec' does not exist in the current context.
{
ToolTip = 'Specifies the value of the Country/Region Code field.', Comment = '%';
}
field("Base Unit of Measure"; Rec."Base Unit of Measure")

Check failure on line 40 in app/src/page/Conferencelocationlist.Page.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0118 The name 'Rec' does not exist in the current context.
{
ToolTip = 'Specifies the value of the Base Unit of Measure field.', Comment = '%';
}
field("Unit Price"; Rec."Unit Price")

Check failure on line 44 in app/src/page/Conferencelocationlist.Page.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0118 The name 'Rec' does not exist in the current context.
{
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;
}
}
}
}
Loading