-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTab50100.ContactRelation.al
39 lines (37 loc) · 1.04 KB
/
Tab50100.ContactRelation.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
table 50100 "Contact Relation"
{
Caption = 'Contact Relation';
DataClassification = CustomerContent;
fields
{
field(1; "No."; Code[10])
{
Caption = 'Entry No';
DataClassification = CustomerContent;
}
field(2; "Contact No."; Code[20])
{
TableRelation = Contact."No.";
}
field(3; "Relation to Contact No."; Code[20])
{
TableRelation = Contact."No.";
}
field(4; "Description"; Text[50])
{
Caption = 'Description';
DataClassification = CustomerContent;
}
field(5; "Contact Name"; Text[50])
{
FieldClass = FlowField;
CalcFormula = lookup (Contact.Name where("No." = field("Contact No.")));
}
field(6; "Relation to Contact Name"; Text[50])
{
FieldClass = FlowField;
CalcFormula = lookup (Contact.Name where("No." = field("Relation to Contact No.")));
}
}
keys { key(PK; "No.") { } }
}