-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataTypesCard.Page.al
61 lines (53 loc) · 1.37 KB
/
DataTypesCard.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
page 59110 "Data Type Card"
{
PageType = Card;
ApplicationArea = All;
UsageCategory = Documents;
Caption = 'Date Type Card';
layout
{
area(Content)
{
group(GroupName)
{
// field(Name; NameSource)
// {
// ApplicationArea = All;
// }
}
}
}
actions
{
area(Processing)
{
action(ActionName)
{
ApplicationArea = All;
}
}
}
trigger OnOpenPage()
var
myInt: Integer;
begin
Message('The value of %1 is %2', 'YesOrNo', yesOrNo);
Message('The value of %1 is %2', 'Amount', Amount);
Message('The value of %1 is %2', 'When Was It', "When Was It");
Message('The value of %1 is %2', 'What Time', "What Time");
Message('The value of %1 is %2', 'Description', Description);
Message('The value of %1 is %2', 'Code Number', "Code Number");
Message('The value of %1 is %2', 'Ch', Ch);
Message('The value of %1 is %2', 'Color', Color);
end;
var
LoopNo: Integer;
YesOrNo: Boolean;
Amount: Decimal;
"When Was It": Date;
"What Time": Time;
Description: Text[30];
"Code Number": Code[10];
Ch: Char;
Color: Option;
}