-
Notifications
You must be signed in to change notification settings - Fork 0
/
Page 50122 Reward List.al
40 lines (34 loc) · 1.09 KB
/
Page 50122 Reward List.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
page 50122 "Reward List"
{
// Specify that this page will be a list page.
PageType = List;
// The page will be part of the "Lists" group of search results.
UsageCategory = Lists;
// The data of this page is taken from the "Reward" table.
SourceTable = Reward;
// The "CardPageId" is set to the Reward Card previously created.
// This will allow users to open records from the list in the "Reward Card" page.
CardPageId = "Reward Card";
layout
{
area(content)
{
repeater(Rewards)
{
field("Reward ID";rec."Reward ID")
{
ApplicationArea = All;
ToolTip = 'Specifies the level of reward that the customer has at this point.';
}
field(Description;rec.Description)
{
ApplicationArea = All;
}
field("Discount Percentage";rec."Discount Percentage")
{
ApplicationArea = All;
}
}
}
}
}