-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2293 add page for upgrade tags (#2301)
#### Summary It would be very welcome to add a page to the upgrade tags table so in that case you can see what kind of upgrade tags there are executed for troubleshooting. #### Work Item(s) Fixes #2293 Fixes [AB#556569](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/556569) --------- Co-authored-by: Jesper Schulz-Wedde <[email protected]> Co-authored-by: Jesper Schulz-Wedde <[email protected]>
- Loading branch information
1 parent
1b3b184
commit 3bcb2bd
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
src/System Application/App/Upgrade Tags/src/UpgradeTags.Page.al
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// ------------------------------------------------------------------------------------------------ | ||
// 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 9985 "Upgrade Tags" | ||
{ | ||
PageType = List; | ||
ApplicationArea = All; | ||
Caption = 'Upgrade Tags'; | ||
Extensible = false; | ||
UsageCategory = Lists; | ||
SourceTable = "Upgrade Tags"; | ||
InsertAllowed = false; | ||
DeleteAllowed = false; | ||
ModifyAllowed = false; | ||
InherentEntitlements = X; | ||
InherentPermissions = X; | ||
|
||
layout | ||
{ | ||
area(Content) | ||
{ | ||
repeater(GroupName) | ||
{ | ||
field(Tag; Rec.Tag) { } | ||
field("Tag Timestamp"; Rec."Tag Timestamp") { } | ||
field(Company; Rec.Company) { } | ||
field("Skipped Upgrade"; Rec."Skipped Upgrade") { } | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters