Page extension 6487 Serv. Timesheet Lines Subf., source in 29
Source29
src/Layers/W1/BaseApp/Service/Projects/Timesheet/ServTimesheetLinesSubf.PageExt.al28 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.Projects.TimeSheet;
pageextension 6487 "Serv. Timesheet Lines Subf." extends "Time Sheet Lines Subform"
{
layout
{
addafter("Work Type Code")
{
field("Service Order No."; Rec."Service Order No.")
{
ApplicationArea = Service;
Editable = AllowEdit;
ToolTip = 'Specifies the service order number that is associated with the time sheet line.';
Visible = ServiceOrderNoVisible;
trigger OnValidate()
begin
CurrPage.SaveRecord();
end;
}
}
}
}