Table 8906 Email Scenario in 27
- App
- System Application
- Namespace
- System.Email
Versions171819202122232425262728latest
Source in 27
src/System Application/App/Email/src/Scenario/EmailScenario.Table.al42 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>
/// Holds the mapping between email account and scenarios.
/// One scenarios is mapped to one email account.
/// One email account can be used for multiple scenarios.
/// </summary>
table 8906 "Email Scenario"
{
Access = Internal;
fields
{
field(1; Scenario; Enum "Email Scenario")
{
DataClassification = SystemMetadata;
}
field(2; Connector; Enum "Email Connector")
{
DataClassification = SystemMetadata;
}
field(3; "Account Id"; Guid)
{
DataClassification = SystemMetadata;
}
}
keys
{
key(PK; Scenario)
{
Clustered = true;
}
}
}Fields, 3
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Scenario | Enum Email Scenario | - |
| 2 | Connector | Enum Email Connector | - |
| 3 | Account Id | Guid | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| PK, clustered | Scenario | - |