Page 5074 Interaction Groups, source in 29
Source29
src/Layers/W1/BaseApp/CRM/Interaction/InteractionGroups.Page.al102 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.Interaction;
page 5074 "Interaction Groups"
{
ApplicationArea = RelationshipMgmt;
Caption = 'Interaction Groups';
PageType = List;
SourceTable = "Interaction Group";
UsageCategory = Administration;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Code"; Rec.Code)
{
ApplicationArea = All;
}
field(Description; Rec.Description)
{
ApplicationArea = All;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
actions
{
area(navigation)
{
group("&Interaction Group")
{
Caption = '&Interaction Group';
Image = Group;
action("Interaction Log E&ntries")
{
ApplicationArea = RelationshipMgmt;
Caption = 'Interaction Log E&ntries';
Image = InteractionLog;
RunObject = Page "Interaction Log Entries";
RunPageLink = "Interaction Group Code" = field(Code);
RunPageView = sorting("Interaction Group Code");
ShortCutKey = 'Ctrl+F7';
ToolTip = 'View a list of the interactions that you have logged, for example, when you create an interaction, print a cover sheet, a sales order, and so on.';
}
action(Statistics)
{
ApplicationArea = RelationshipMgmt;
Caption = 'Statistics';
Image = Statistics;
RunObject = Page "Interaction Group Statistics";
RunPageLink = Code = field(Code);
ShortCutKey = 'F7';
ToolTip = 'View statistical information, such as the value of posted entries, for the record.';
}
action("Interaction &Templates")
{
ApplicationArea = RelationshipMgmt;
Caption = 'Interaction &Templates';
Image = InteractionTemplate;
RunObject = Page "Interaction Templates";
RunPageLink = "Interaction Group Code" = field(Code);
RunPageView = sorting("Interaction Group Code");
ToolTip = 'View the different templates that you can use when creating interactions.';
}
}
}
area(Promoted)
{
group(Category_Process)
{
Caption = 'Process';
actionref(Statistics_Promoted; Statistics)
{
}
}
}
}
}