Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2293 add page for upgrade tags #2301

Merged
Merged
32 changes: 32 additions & 0 deletions src/System Application/App/Upgrade Tags/src/UpgradeTags.Page.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// ------------------------------------------------------------------------------------------------
// 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;
page 9998 "Upgrade Tags"
JesperSchulz marked this conversation as resolved.
Show resolved Hide resolved
JesperSchulz marked this conversation as resolved.
Show resolved Hide resolved
{
PageType = List;
ApplicationArea = All;
Caption = 'Upgrade Tags';
Bertverbeek4PS marked this conversation as resolved.
Show resolved Hide resolved
Extensible = false;
UsageCategory = Lists;
SourceTable = "Upgrade Tags";
InsertAllowed = false;
DeleteAllowed = false;
ModifyAllowed = false;
JesperSchulz marked this conversation as resolved.
Show resolved Hide resolved

layout
{
area(Content)
{
repeater(GroupName)
{
field(Tag; Rec.Tag) { }
field("Tag Timestamp"; Rec."Tag Timestamp") { }
field(Company; Rec.Company) { }
Bertverbeek4PS marked this conversation as resolved.
Show resolved Hide resolved
field("Skipped Upgrade"; Rec."Skipped Upgrade") { }
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,26 @@ table 9999 "Upgrade Tags"
{
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.';
}
}

Expand Down
Loading