Page 5221 Confidential Information
- App
- Base Application
- Namespace
- Microsoft.HumanResources.Employee
- Versions
- 17-28
- Source table
- 5216
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/HumanResources/Employee/ConfidentialInformation.Page.al85 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;
page 5221 "Confidential Information"
{
AutoSplitKey = true;
Caption = 'Confidential Information';
DataCaptionFields = "Employee No.";
PageType = List;
SourceTable = "Confidential Information";
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Confidential Code"; Rec."Confidential Code")
{
ApplicationArea = BasicHR;
}
field(Description; Rec.Description)
{
ApplicationArea = BasicHR;
}
field(Comment; Rec.Comment)
{
ApplicationArea = Comments;
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = true;
}
}
}
actions
{
area(navigation)
{
group("&Confidential")
{
Caption = '&Confidential';
Image = ConfidentialOverview;
action("Co&mments")
{
ApplicationArea = Comments;
Caption = 'Co&mments';
Image = ViewComments;
ToolTip = 'View or add comments for the record.';
trigger OnAction()
var
HRConfidentialCommentLine: Record "HR Confidential Comment Line";
begin
HRConfidentialCommentLine.SetRange("Table Name", HRConfidentialCommentLine."Table Name"::"Confidential Information");
HRConfidentialCommentLine.SetRange("No.", Rec."Employee No.");
HRConfidentialCommentLine.SetRange(Code, Rec."Confidential Code");
HRConfidentialCommentLine.SetRange("Table Line No.", Rec."Line No.");
PAGE.RunModal(PAGE::"HR Confidential Comment Sheet", HRConfidentialCommentLine);
end;
}
}
}
area(Promoted)
{
}
}
}