-
Notifications
You must be signed in to change notification settings - Fork 0
/
Table 50101 Course.al
78 lines (65 loc) · 1.38 KB
/
Table 50101 Course.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
table 50101 Course
{
DataClassification = ToBeClassified;
fields
{
field(10; Code; Code[10])
{
DataClassification = ToBeClassified;
}
field(20; Name; Text[30])
{
DataClassification = ToBeClassified;
}
field(30; Description; Text[50])
{
DataClassification = ToBeClassified;
}
field(40; Type; Option)
{
DataClassification = ToBeClassified;
OptionMembers = "Instructor Led","e-Learning","Remote Training";
}
field(50; Duration; Decimal)
{
DataClassification = ToBeClassified;
}
field(60; Price; Decimal)
{
DataClassification = ToBeClassified;
}
field(70; Active; Boolean)
{
DataClassification = ToBeClassified;
}
field(80; Difficulty; Integer)
{
DataClassification = ToBeClassified;
}
field(90; PassingRate; Integer)
{
DataClassification = ToBeClassified;
}
}
keys
{
key(PK; Code)
{
Clustered = true;
}
}
var
myInt: Integer;
trigger OnInsert()
begin
end;
trigger OnModify()
begin
end;
trigger OnDelete()
begin
end;
trigger OnRename()
begin
end;
}