-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathCustomers.Page.al
44 lines (43 loc) · 1.1 KB
/
Customers.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
page 50400 Customers
{
APIGroup = 'powerBI';
APIPublisher = 'contoso';
APIVersion = 'v2.0';
Caption = 'customers';
DelayedInsert = true;
EntityName = 'pagcustomer';
EntitySetName = 'pagcustomers';
PageType = API;
SourceTable = Customer;
DataAccessIntent = ReadOnly;
Editable = false;
layout
{
area(content)
{
repeater(General)
{
field(customerNo; Rec."No.")
{
Caption = 'customerNo';
}
field(customerName; Rec.Name)
{
Caption = 'customerName';
}
field(countryRegionCode; Rec."Country/Region Code")
{
Caption = 'countryRegionCode';
}
field(city; Rec.City)
{
Caption = 'City';
}
field(salespersonCode; Rec."Salesperson Code")
{
Caption = 'Salesperson Code';
}
}
}
}
}