Page 7368 Bin Creation Wksh. Templ. List
- App
- Base Application
- Namespace
- Microsoft.Warehouse.Structure
- Versions
- 17-28
- Source table
- 7336
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Warehouse/Structure/BinCreationWkshTemplList.Page.al77 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.Warehouse.Structure;
using System.Reflection;
page 7368 "Bin Creation Wksh. Templ. List"
{
Caption = 'Bin Creation Wksh. Templ. List';
Editable = false;
PageType = List;
RefreshOnActivate = true;
SourceTable = "Bin Creation Wksh. Template";
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field(Name; Rec.Name)
{
ApplicationArea = Warehouse;
}
field(Description; Rec.Description)
{
ApplicationArea = Warehouse;
}
field("Page ID"; Rec."Page ID")
{
ApplicationArea = Warehouse;
LookupPageID = Objects;
Visible = false;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
actions
{
area(navigation)
{
group("Te&mplate")
{
Caption = 'Te&mplate';
Image = Template;
action(Names)
{
ApplicationArea = Warehouse;
Caption = 'Names';
Image = Description;
RunObject = Page "Bin Creation Wksh. Names";
RunPageLink = "Worksheet Template Name" = field(Name);
ToolTip = 'View the list of available template names.';
}
}
}
}
}