-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyPage.al
111 lines (101 loc) · 2.94 KB
/
MyPage.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
page 59100 MyPage
{
PageType = Card;
ApplicationArea = All;
UsageCategory = Administration;
SourceTable = MyTable;
PromotedActionCategories = 'New,Process,Report,,,,,Status,,,,,Function,,,,,Navigate';
layout
{
area(Content)
{
group(GroupName)
{
field(Name; MyField)
{
ApplicationArea = All;
}
}
}
}
actions
{
area(Processing)
{
action(ActionName)
{
ApplicationArea = All;
Caption = 'New Action';
Promoted = true;
PromotedCategory = New;
PromotedOnly = true;
trigger OnAction()
begin
Message('new Action');
end;
}
action("Category7 Action")
{
ApplicationArea = All;
Caption = 'Status Action';
Promoted = true;
PromotedCategory = Category7;
PromotedOnly = true;
trigger OnAction()
begin
Message('Category7 Action');
end;
}
action("Status Action")
{
ApplicationArea = All;
Caption = 'Status Action';
Promoted = true;
PromotedCategory = Category8;
PromotedOnly = true;
trigger OnAction()
begin
Message('Status Action');
end;
}
action("Category9 Action")
{
ApplicationArea = All;
Caption = 'Status Action';
Promoted = true;
PromotedCategory = Category9;
PromotedOnly = true;
trigger OnAction()
begin
Message('Category9 Action');
end;
}
action("Function Action")
{
ApplicationArea = All;
Caption = 'Function Action';
Promoted = true;
PromotedCategory = Category13;
PromotedOnly = true;
trigger OnAction()
begin
Message('Function Action');
end;
}
action("Navigate Action")
{
ApplicationArea = All;
Caption = 'Navigate Action';
Promoted = true;
PromotedCategory = Category18;
PromotedOnly = true;
trigger OnAction()
begin
Message('Navigate Action');
end;
}
}
}
var
myInt: Integer;
}