Page 5224 Employee Posting Groups
- App
- Base Application
- Namespace
- Microsoft.HumanResources.Employee
- Versions
- 17-28
- Source table
- 5221
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/HumanResources/Employee/EmployeePostingGroups.Page.al83 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.Employee;
using Microsoft.HumanResources.Setup;
page 5224 "Employee Posting Groups"
{
ApplicationArea = BasicHR;
Caption = 'Employee Posting Groups';
PageType = List;
SourceTable = "Employee Posting Group";
UsageCategory = Administration;
layout
{
area(content)
{
repeater(Group)
{
field("Code"; Rec.Code)
{
ApplicationArea = BasicHR;
}
field("Payables Account"; Rec."Payables Account")
{
ApplicationArea = BasicHR;
}
field("Debit Curr. Appln. Rndg. Acc."; Rec."Debit Curr. Appln. Rndg. Acc.")
{
ApplicationArea = BasicHR;
}
field("Credit Curr. Appln. Rndg. Acc."; Rec."Credit Curr. Appln. Rndg. Acc.")
{
ApplicationArea = BasicHR;
}
field("Debit Rounding Account"; Rec."Debit Rounding Account")
{
ApplicationArea = BasicHR;
}
field("Credit Rounding Account"; Rec."Credit Rounding Account")
{
ApplicationArea = BasicHR;
}
}
}
}
actions
{
area(navigation)
{
group("&Posting Group")
{
Caption = '&Posting Group';
action(Alternative)
{
ApplicationArea = Basic, Suite;
Caption = 'Alternative Groups';
Image = Relationship;
RunObject = Page "Alt. Employee Posting Groups";
RunPageLink = "Employee Posting Group" = field(Code);
ToolTip = 'Specifies alternative employee posting groups.';
Visible = AltPostingGroupsVisible;
}
}
}
}
trigger OnOpenPage()
begin
HumanResourcesSetup.Get();
AltPostingGroupsVisible := HumanResourcesSetup."Allow Multiple Posting Groups";
end;
var
HumanResourcesSetup: Record "Human Resources Setup";
AltPostingGroupsVisible: Boolean;
}