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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 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,30 @@
// ------------------------------------------------------------------------------------------------
// 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"
{
PageType = List;
ApplicationArea = All;
Caption = 'Upgrade Tags';
UsageCategory = Lists;
SourceTable = "Upgrade Tags";
InsertAllowed = false;
DeleteAllowed = false;
ModifyAllowed = false;

layout
{
area(Content)
{
repeater(GroupName)
{
field(Tag; Rec.Tag) { }
field("Tag Timestamp"; Rec."Tag Timestamp") { }
field(Company; Rec.Company) { }
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,19 @@ 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)
Expand Down