Page extension 6459 Serv. Location List

App
Base Application
Namespace
Microsoft.Inventory.Location
Versions
25-28
Extends
Location List

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Service/Inventory/Location/ServlocationList.PageExt.al33 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.Inventory.Location;

using Microsoft.Service.Resources;

pageextension 6459 "Serv. Location List" extends "Location List"
{
    actions
    {
        addafter("&Bins")
        {
            action("&Resource Locations")
            {
                ApplicationArea = Location;
                Caption = '&Resource Locations';
                Image = Resource;
                RunObject = Page "Resource Locations";
                RunPageLink = "Location Code" = field(Code);
                ToolTip = 'View or edit information about where resources are located. In this window, you can assign resources to locations.';
            }
        }
        addafter("&Bins_Promoted")
        {
            actionref("&Resource Locations_Promoted"; "&Resource Locations")
            {
            }
        }
    }
}