Table 9450 File Account in 27
- App
- System Application
- Namespace
- System.ExternalFileStorage
Versions171819202122232425262728latest
Source in 27
src/System Application/App/External File Storage/src/Account/FileAccount.Table.al44 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>
/// A common representation of a file account.
/// </summary>
table 9450 "File Account"
{
Extensible = false;
TableType = Temporary;
Caption = 'External File Account';
fields
{
field(1; "Account Id"; Guid) { }
field(2; Name; Text[250]) { }
field(4; Connector; Enum "Ext. File Storage Connector") { }
field(5; Logo; Media)
{
Access = Internal;
}
}
keys
{
key(PK; "Account Id", Connector)
{
Clustered = true;
}
key(Name; Name)
{
Description = 'Used for sorting';
}
}
fieldgroups
{
fieldgroup(Brick; Logo, Name) { }
}
}Fields, 4
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Account Id | Guid | - |
| 2 | Name | Text[250] | - |
| 4 | Connector | Enum Ext. File Storage Connector | - |
| 5 | Logo | Media | - |
Keys, 2
| Name | Fields | Obsolete |
|---|---|---|
| PK, clustered | Account Id, Connector | - |
| Name | Name | - |