Table 9155 My Time Sheets

App
Base Application
Namespace
Microsoft.Projects.TimeSheet
Versions
17-28

Fields, 5Keys, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Projects/TimeSheet/MyTimeSheets.Table.al62 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;

using System.Security.AccessControl;

table 9155 "My Time Sheets"
{
    Caption = 'My Time Sheets';
    DataClassification = CustomerContent;

    fields
    {
        field(1; "User ID"; Code[50])
        {
            Caption = 'User ID';
            DataClassification = EndUserIdentifiableInformation;
            TableRelation = User."User Name";
            ValidateTableRelation = false;
        }
        field(2; "Time Sheet No."; Code[20])
        {
            Caption = 'Time Sheet No.';
            ToolTip = 'Specifies the number of the time sheet.';
            Description = 'Specifies the number of the time sheet.';
        }
        field(3; "Start Date"; Date)
        {
            Caption = 'Start Date';
            ToolTip = 'Specifies the start date of the assignment.';
            Description = 'Specifies the start date of the assignment.';
        }
        field(4; "End Date"; Date)
        {
            Caption = 'End Date';
            ToolTip = 'Specifies the end date of the assignment.';
            Description = 'Specifies the end date of the assignment.';
        }
        field(5; Comment; Boolean)
        {
            Caption = 'Comment';
            ToolTip = 'Specifies any comments about the assignment.';
            Description = 'Specifies if any comments are available about the assignment.';
        }
    }

    keys
    {
        key(Key1; "User ID", "Time Sheet No.")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}