Page 5066 Industry Groups, source in 29
Source29
src/Layers/W1/BaseApp/CRM/Setup/IndustryGroups.Page.al76 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.CRM.Setup;
using Microsoft.CRM.Contact;
page 5066 "Industry Groups"
{
ApplicationArea = RelationshipMgmt;
Caption = 'Industry Groups';
PageType = List;
SourceTable = "Industry Group";
UsageCategory = Administration;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Code"; Rec.Code)
{
ApplicationArea = All;
}
field(Description; Rec.Description)
{
ApplicationArea = All;
}
field("No. of Contacts"; Rec."No. of Contacts")
{
ApplicationArea = RelationshipMgmt;
DrillDownPageID = "Industry Group Contacts";
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
actions
{
area(navigation)
{
group("&Industry Group")
{
Caption = '&Industry Group';
Image = IndustryGroups;
action("C&ontacts")
{
ApplicationArea = RelationshipMgmt;
Caption = 'C&ontacts';
Image = CustomerContact;
RunObject = Page "Industry Group Contacts";
RunPageLink = "Industry Group Code" = field(Code);
ToolTip = 'View a list of the contact companies you have assigned the industry group to.';
}
}
}
}
}