-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPag50101.Friends.al
47 lines (45 loc) · 1.15 KB
/
Pag50101.Friends.al
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
page 50101 Friends
{
ApplicationArea = All;
Caption = 'Friends';
PageType = List;
SourceTable = Friend;
UsageCategory = Lists;
layout
{
area(content)
{
repeater(General)
{
field("No."; Rec."Person No.")
{
ToolTip = 'Specifies the No..';
ApplicationArea = All;
}
field(Id; Rec.Id)
{
ToolTip = 'Specifies the Id.';
ApplicationArea = All;
}
field(Description; Rec.Description)
{
ToolTip = 'Specifies the Description.';
ApplicationArea = All;
}
}
}
}
actions
{
area(Navigation)
{
action(Pets)
{
ApplicationArea = All;
Image = List;
RunObject = page Pets;
RunPageLink = "Person No." = field("Person No."), "Friend Id." = field(Id);
}
}
}
}