Table 8907 Email Account Scenario in 25
- App
- System Application
- Namespace
- System.Email
Versions171819202122232425262728latest
Source in 25
src/System Application/App/Email/src/Scenario/EmailAccountScenario.Table.al74 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>
/// Temporary table used to display the tree sctructure in "Email Scenario Setup".
/// </summary>
table 8907 "Email Account Scenario"
{
Access = Internal;
InherentPermissions = X;
InherentEntitlements = X;
TableType = Temporary;
fields
{
field(1; Scenario; Integer)
{
DataClassification = SystemMetadata;
}
field(2; Connector; Enum "Email Connector")
{
DataClassification = SystemMetadata;
}
field(3; "Account Id"; Guid)
{
DataClassification = SystemMetadata;
}
field(4; "Display Name"; Text[2048])
{
DataClassification = SystemMetadata;
}
field(5; Default; Boolean)
{
DataClassification = SystemMetadata;
}
field(6; EntryType; Option)
{
DataClassification = SystemMetadata;
OptionMembers = Account,Scenario;
}
field(7; Position; Integer)
{
DataClassification = SystemMetadata;
}
}
keys
{
key(PK; Scenario, "Account Id", Connector)
{
Clustered = true;
}
key(Position; Position)
{
}
key(Name; "Display Name")
{
Description = 'Used for sorting by Dispay Name';
}
}
}Fields, 7
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Scenario | Integer | - |
| 2 | Connector | Enum Email Connector | - |
| 3 | Account Id | Guid | - |
| 4 | Display Name | Text[2048] | - |
| 5 | Default | Boolean | - |
| 6 | EntryType | Option | - |
| 7 | Position | Integer | - |
Keys, 3
| Name | Fields | Obsolete |
|---|---|---|
| PK, clustered | Scenario, Account Id, Connector | - |
| Position | Position | - |
| Name | Display Name | - |