-
Notifications
You must be signed in to change notification settings - Fork 0
/
Page 50104 My Test Page.al
151 lines (134 loc) · 3.3 KB
/
Page 50104 My Test Page.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
page 50104 "My Test Page"
{
PageType = Card;
ApplicationArea = All;
UsageCategory = Administration;
// SourceTable = Course;
layout
{
area(Content)
{
group(Simple)
{
field("First Name"; FirstName)
{
}
field("Last Name"; LastName)
{
}
}
group(Input)
{
field(Value1; Value1)
{
ApplicationArea = All;
}
field(Value2; Value2)
{
ApplicationArea = All;
}
}
group(Output)
{
field(Result; Result)
{
ApplicationArea = All;
}
}
group(Test)
{
field(LoopNo; LoopNo)
{
}
field(YesOrNo; YesOrNo)
{
}
field(Amount; Amount)
{
}
field("When Was It"; "When Was It")
{
}
field("What Time"; "What Time")
{
}
field(Description; Description)
{
}
field("Code Number"; "Code Number")
{
}
field(Ch; Ch)
{
}
field(Color; Color)
{
}
}
}
}
actions
{
area(Processing)
{
action("Execute")
{
ApplicationArea = All;
trigger OnAction()
begin
execute_Result();
end;
}
action("Test Codeunit")
{
trigger onACtion()
begin
test_Codeunit();
end;
}
action("Simple Codeunit Test")
{
trigger OnAction()
begin
simple_Codeunit();;
end;
}
}
}
var
myInt: Integer;
Value1: Integer;
Value2: Integer;
Result: Boolean;
LoopNo: Integer;
YesOrNo: Boolean;
Amount: Decimal;
"When Was It": Date;
"What Time": Time;
Description: Text[30];
"Code Number": Code[10];
Ch: Char;
Color: Option Red, Orange, Yelloe, Green, Blue, Violet;
FirstName: Text[30];
LastName: Text[30];
procedure execute_Result();
begin
Result := Value1 > Value2;
end;
procedure test_Codeunit();
var
myCodeunit: Codeunit 50105;
begin
// Codeunit.run(50105);
myCodeunit.initVariables(LoopNo, YesOrNo, Amount, "When Was It", "What Time", Description, "Code Number", Ch, Color);
myCodeunit.Run();
end;
procedure simple_Codeunit();
var
mySimpleCodeunit: Codeunit 50106;
begin
mySimpleCodeunit.setFirstName(FirstName);
mySimpleCodeunit.setLastName(LastName);
mySimpleCodeunit.Run();
end;
}