Table 9453 File Account Scenario in 28
- App
- System Application
- Namespace
- System.ExternalFileStorage
Versions171819202122232425262728latest
Source in 28
src/System Application/App/External File Storage/src/Scenario/FileAccountScenario.Table.al43 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.ExternalFileStorage;
/// <summary>
/// Temporary table used to display the tree structure in "File Scenario Setup".
/// </summary>
table 9453 "File Account Scenario"
{
Access = Internal;
InherentPermissions = X;
InherentEntitlements = X;
TableType = Temporary;
fields
{
field(1; Scenario; Integer) { }
field(2; Connector; Enum "Ext. File Storage Connector") { }
field(3; "Account Id"; Guid) { }
field(4; "Display Name"; Text[2048]) { }
field(5; Default; Boolean) { }
field(6; EntryType; Enum "File Account Entry Type") { }
field(7; Position; Integer) { }
}
keys
{
key(PK; Scenario, "Account Id", Connector)
{
Clustered = true;
}
key(Position; Position)
{
}
key(Name; "Display Name")
{
Description = 'Used for sorting by Display Name';
}
}
}Fields, 7
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Scenario | Integer | - |
| 2 | Connector | Enum Ext. File Storage Connector | - |
| 3 | Account Id | Guid | - |
| 4 | Display Name | Text[2048] | - |
| 5 | Default | Boolean | - |
| 6 | EntryType | Enum File Account Entry Type | - |
| 7 | Position | Integer | - |
Keys, 3
| Name | Fields | Obsolete |
|---|---|---|
| PK, clustered | Scenario, Account Id, Connector | - |
| Position | Position | - |
| Name | Display Name | - |