-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
316 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
pageextension 50105 "ContectRelationExtension" extends "Contact Card" | ||
{ | ||
layout | ||
{ | ||
|
||
addafter(General) | ||
{ | ||
group("ContactRelGroup") | ||
{ | ||
Caption = 'Contact Relations'; | ||
part("Contact Relations"; "Contact Relation Listpart") | ||
{ | ||
SubPageLink = "Contact No." = FIELD("No."); | ||
Visible = false; | ||
} | ||
} | ||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
pageextension 50106 "ContactRelationListExtension" extends "Contact List" | ||
{ | ||
layout | ||
{ | ||
addafter(Control1) | ||
{ | ||
group("ContactRelGroup") | ||
{ | ||
part("Relations"; "Contact Relation Listpart") | ||
{ | ||
SubPageLink = "Contact No." = FIELD("No."); | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
page 50104 "Contact Relation Listpart" | ||
{ | ||
|
||
Caption = 'Contact Relations'; | ||
PageType = ListPart; | ||
SourceTable = "Contact Relation"; | ||
|
||
layout | ||
{ | ||
area(content) | ||
{ | ||
repeater(General) | ||
{ | ||
field("No."; "No.") | ||
{ | ||
ApplicationArea = All; | ||
} | ||
field("Contact No."; "Contact No.") | ||
{ | ||
ApplicationArea = All; | ||
} | ||
field("Contact Name"; "Contact Name") | ||
{ | ||
ApplicationArea = All; | ||
} | ||
field("Description"; Description) | ||
{ | ||
ApplicationArea = All; | ||
} | ||
field("Relation to Contact No."; "Relation to Contact No.") | ||
{ | ||
ApplicationArea = All; | ||
} | ||
field("Relation to Contact Name"; "Relation to Contact Name") | ||
{ | ||
ApplicationArea = All; | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters