-
Notifications
You must be signed in to change notification settings - Fork 0
/
Page 50121 Reward Card.al
43 lines (37 loc) · 1.29 KB
/
Page 50121 Reward Card.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
page 50121 "Reward Card"
{
// The page will be of type "Card" and will render as a card.
PageType = Card;
// The page will be part of the "Tasks" group of search results.
UsageCategory = Tasks;
// The source table shows data from the "Reward" table.
SourceTable = Reward;
// The target Help topic is hosted on the website that is specified in the app.json file.
ContextSensitiveHelpPage = 'sales-rewards';
// The layout describes the visual parts on the page.
layout
{
area(content)
{
group(Reward)
{
field("Reward Id";rec."Reward ID")
{
// ApplicationArea sets the application area that
// applies to the page field and action controls.
// Setting the property to All means that the control
// will always appear in the user interface.
ApplicationArea = All;
}
field(Description;rec.Description)
{
ApplicationArea = All;
}
field("Discount Percentage";rec."Discount Percentage")
{
ApplicationArea = All;
}
}
}
}
}