Page 9985 Upgrade Tags in 25

App
System Application
Namespace
System.Upgrade
Source table
9999

Versions171819202122232425262728latest

Source242526272829

Source in 25

src/System Application/App/Upgrade Tags/src/UpgradeTags.Page.al36 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// 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;
    Permissions =
        tabledata "Upgrade Tags" = r;

    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") { }
            }
        }
    }
}