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 2 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 PageName

Check failure on line 7 in src/System Application/App/Upgrade Tags/src/UpgradeTags.Page.al

View workflow job for this annotation

GitHub Actions / Build System Application and Tools (Clean) / System Application and Tools (Clean)

AA0215 The file UpgradeTags.Page.al has an incorrect name. The valid name is PageName.Page.al.

Check failure on line 7 in src/System Application/App/Upgrade Tags/src/UpgradeTags.Page.al

View workflow job for this annotation

GitHub Actions / Build System Application and Tools (Translated) / System Application and Tools (Translated)

AA0215 The file UpgradeTags.Page.al has an incorrect name. The valid name is PageName.Page.al.

Check failure on line 7 in src/System Application/App/Upgrade Tags/src/UpgradeTags.Page.al

View workflow job for this annotation

GitHub Actions / Build System Application and Tools (Default) / System Application and Tools (Default)

AA0215 The file UpgradeTags.Page.al has an incorrect name. The valid name is PageName.Page.al.
Bertverbeek4PS marked this conversation as resolved.
Show resolved Hide resolved
{
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) { }
Bertverbeek4PS marked this conversation as resolved.
Show resolved Hide resolved
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
Loading