-
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.
Browse files
Browse the repository at this point in the history
#### 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 #2417 Fixes [AB#556569](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/556569) --------- <!-- Thank you for submitting a Pull Request. If you're new to contributing to BCApps please read our pull request guideline below * https://github.com/microsoft/BCApps/Contributing.md --> #### Summary <!-- Provide a general summary of your changes --> #### Work Item(s) <!-- Add the issue number here after the #. The issue needs to be open and approved. Submitting PRs with no linked issues or unapproved issues is highly discouraged. --> Fixes # --------- Co-authored-by: Jesper Schulz-Wedde <[email protected]> Co-authored-by: Jesper Schulz-Wedde <[email protected]>
- Loading branch information
1 parent
4a075f6
commit 8f85f7e
Showing
4 changed files
with
42 additions
and
82 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
82 changes: 0 additions & 82 deletions
82
src/System Application/App/Word Templates/src/WordTemplatesRelatedList.Page.al
This file was deleted.
Oops, something went wrong.