-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pag50103.ContactApi.al
52 lines (48 loc) · 1.53 KB
/
Pag50103.ContactApi.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
page 50103 "Contact Api"
{
APIGroup = 'queries';
APIPublisher = 'publisher';
APIVersion = 'v1.0';
DelayedInsert = true;
EntityName = 'contact';
EntitySetName = 'contacts';
PageType = API;
SourceTable = Contact;
layout
{
area(content)
{
repeater(General)
{
field(number; "No.") { }
field(firstName; "First Name") { }
field(surname; Surname) { }
field(name; Name) { }
part(companyContact; 50108)
{
EntityName = 'companyContact';
EntitySetName = 'companyContacts';
SubPageLink = "No." = FIELD("No.");
}
part(relations; 50102)
{
EntityName = 'contactRelation';
EntitySetName = 'contactRelations';
SubPageLink = "Contact No." = FIELD("No.");
}
part(relationsToOthers; 50106)
{
EntityName = 'contactRelationTo';
EntitySetName = 'contactRelationsTo';
SubPageLink = "Contact No." = FIELD("No.");
}
part(relationsFromOthers; 50107)
{
EntityName = 'contactRelationFrom';
EntitySetName = 'contactRelationsFrom';
SubPageLink = "Relation to Contact No." = FIELD("No.");
}
}
}
}
}