Page extension 240 ResSourceCodesExt

App
Base Application
Namespace
Microsoft.Projects.Resources.Ledger
Versions
25-28
Extends
#f3552374a1f24356848e196002525837#Source Codes

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Projects/Resources/Ledger/ResSourceCodesExt.PageExt.al29 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 Microsoft.Projects.Resources.Ledger;

using Microsoft.Foundation.AuditCodes;

pageextension 240 ResSourceCodesExt extends "Source Codes"
{
    actions
    {
        addafter("G/L Registers")

        {
            action("Resource Registers")
            {
                ApplicationArea = Jobs;
                Caption = 'Resource Registers';
                Image = ResourceRegisters;
                RunObject = Page "Resource Registers";
                RunPageLink = "Source Code" = field(Code);
                RunPageView = sorting("Source Code");
                ToolTip = 'View a list of all the resource registers. Every time a resource entry is posted, a register is created. Every register shows the first and last entry numbers of its entries. You can use the information in a resource register to document when entries were posted.';
            }
        }
    }
}