Page extension 6458 Serv. Location Card

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

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Service/Inventory/Location/ServLocationCard.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 6458 "Serv. Location Card" extends "Location Card"
{
    actions
    {
        addafter("Warehouse Employees")
        {
            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("Online Map_Promoted")
        {
            actionref("&Resource Locations_Promoted"; "&Resource Locations")
            {
            }
        }
    }
}