Page 5141 Saved Segment Criteria List, source in 29
Source29
src/Layers/W1/BaseApp/CRM/Segment/SavedSegmentCriteriaList.Page.al72 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.Segment;
using System.Security.User;
page 5141 "Saved Segment Criteria List"
{
Caption = 'Saved Segment Criteria List';
CardPageID = "Saved Segment Criteria Card";
Editable = false;
PageType = List;
SourceTable = "Saved Segment Criteria";
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Code"; Rec.Code)
{
ApplicationArea = All;
}
field(Description; Rec.Description)
{
ApplicationArea = All;
}
field("User ID"; Rec."User ID")
{
ApplicationArea = Basic, Suite;
Visible = false;
trigger OnDrillDown()
var
UserMgt: Codeunit "User Management";
begin
UserMgt.DisplayUserInformation(Rec."User ID");
end;
}
field("No. of Actions"; Rec."No. of Actions")
{
ApplicationArea = Basic, Suite;
DrillDown = false;
Visible = false;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
actions
{
}
}