Page 5213 Unions, source in 29
Source29
src/Layers/W1/BaseApp/HumanResources/Setup/Unions.Page.al75 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.HumanResources.Setup;
page 5213 Unions
{
ApplicationArea = BasicHR;
Caption = 'Unions';
PageType = List;
SourceTable = Union;
UsageCategory = Administration;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Code"; Rec.Code)
{
ApplicationArea = BasicHR;
}
field(Name; Rec.Name)
{
ApplicationArea = BasicHR;
}
field(Address; Rec.Address)
{
ApplicationArea = BasicHR;
Visible = false;
}
field("Post Code"; Rec."Post Code")
{
ApplicationArea = BasicHR;
Visible = false;
}
field(City; Rec.City)
{
ApplicationArea = BasicHR;
Visible = false;
}
field("Phone No."; Rec."Phone No.")
{
ApplicationArea = BasicHR;
}
field("No. of Members Employed"; Rec."No. of Members Employed")
{
ApplicationArea = BasicHR;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
actions
{
}
}