forked from ajkauffmann/BCTech
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPICarModel.Page.al
More file actions
58 lines (52 loc) · 1.25 KB
/
APICarModel.Page.al
File metadata and controls
58 lines (52 loc) · 1.25 KB
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
page 50101 "API Car Model"
{
PageType = API;
APIVersion = 'v1.0';
APIPublisher = 'bctech';
APIGroup = 'demo';
EntityCaption = 'CarModel';
EntitySetCaption = 'CarModels';
EntityName = 'carModel';
EntitySetName = 'carModels';
ODataKeyFields = SystemId;
SourceTable = "Car Model";
Extensible = false;
DelayedInsert = true;
layout
{
area(content)
{
repeater(Group)
{
field(id; Rec.SystemId)
{
Caption = 'Id';
Editable = false;
}
field(name; Rec.Name)
{
Caption = 'Name';
}
field(description; Rec.Description)
{
Caption = 'Description';
}
field(brandId; Rec."Brand Id")
{
Caption = 'Brand Id';
}
field(power; Rec.Power)
{
Caption = 'Power';
}
field(fuelType; Rec."Fuel Type")
{
Caption = 'Fuel Type';
}
}
}
}
actions
{
}
}