Page 963 Time Sheet Arc. Comment Sheet
- App
- Base Application
- Namespace
- Microsoft.Projects.TimeSheet
- Versions
- 17-28
- Source table
- 957
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Projects/TimeSheet/TimeSheetArcCommentSheet.Page.al48 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;
page 963 "Time Sheet Arc. Comment Sheet"
{
AutoSplitKey = true;
Caption = 'Comment Sheet';
DataCaptionFields = "No.";
DelayedInsert = true;
LinksAllowed = false;
MultipleNewLines = true;
PageType = List;
SourceTable = "Time Sheet Cmt. Line Archive";
layout
{
area(content)
{
repeater(Control1)
{
Editable = false;
ShowCaption = false;
field(Date; Rec.Date)
{
ApplicationArea = Comments;
}
field(Comment; Rec.Comment)
{
ApplicationArea = Comments;
}
field("Code"; Rec.Code)
{
ApplicationArea = Comments;
Visible = false;
}
}
}
}
actions
{
}
}