Page 8895 Email Scenarios FactBox, source in 27
Source242526272829metadata in 27
src/System Application/App/Email/src/Scenario/EmailScenariosFactBox.Page.al40 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 System.Email;
/// <summary>
/// Lists of all scenarios assigned to an account.
/// </summary>
page 8895 "Email Scenarios FactBox"
{
PageType = ListPart;
Extensible = false;
SourceTable = "Email Scenario";
InsertAllowed = false;
ModifyAllowed = false;
DeleteAllowed = false;
Editable = false;
ShowFilter = false;
LinksAllowed = false;
Permissions = tabledata "Email Scenario" = r;
layout
{
area(Content)
{
repeater(ScenariosByEmail)
{
field(Name; Format(Rec.Scenario))
{
ApplicationArea = All;
ToolTip = 'Specifies the email scenario.';
Caption = 'Email scenario';
Editable = false;
}
}
}
}
}