Table 9999 Upgrade Tags in 27
- App
- System Application
- Namespace
- System.Upgrade
Versions171819202122232425262728latest
Source in 27
src/System Application/App/Upgrade Tags/src/UpgradeTags.Table.al56 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.Upgrade;
table 9999 "Upgrade Tags"
{
Access = Internal;
InherentEntitlements = rimdX;
InherentPermissions = rimdX;
Caption = 'Upgrade Tags';
DataClassification = SystemMetadata;
DataPerCompany = false;
fields
{
field(1; Tag; Code[250])
{
Caption = 'Tag';
DataClassification = SystemMetadata;
ToolTip = 'Specifies the tag that is used to identify the upgrade.';
}
field(2; "Tag Timestamp"; DateTime)
{
Caption = 'Tag Timestamp';
DataClassification = SystemMetadata;
ToolTip = 'Specifies the date and time when the upgrade is executed.';
}
field(3; Company; Code[30])
{
Caption = 'Company';
DataClassification = SystemMetadata;
ToolTip = 'Specifies the company where the upgrade is executed.';
}
field(4; "Skipped Upgrade"; Boolean)
{
Caption = 'Skipped Upgrade';
DataClassification = SystemMetadata;
ToolTip = 'Specifies whether the upgrade is skipped.';
}
}
keys
{
key(Key1; Tag, Company)
{
Clustered = true;
}
}
}
Fields, 4
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Tag | Code[250] | - |
| 2 | Tag Timestamp | DateTime | - |
| 3 | Company | Code[30] | - |
| 4 | Skipped Upgrade | Boolean | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| Key1, clustered | Tag, Company | - |