Page 1175 User Task Group

App
Base Application
Namespace
Microsoft.Foundation.Task
Versions
17-28
Source table
1175

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Modules/Foundation/UserTask/UserTaskGroup.Page.al41 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.Foundation.Task;

page 1175 "User Task Group"
{
    Caption = 'User Task Group';
    PageType = Document;
    SourceTable = "User Task Group";

    layout
    {
        area(content)
        {
            field("Code"; Rec.Code)
            {
                ApplicationArea = Basic, Suite;
                Caption = 'Group Code';
            }
            field(Description; Rec.Description)
            {
                ApplicationArea = Basic, Suite;
                Caption = 'Description';
            }
            part(Control4; "User Task Group Members")
            {
                ApplicationArea = Basic, Suite;
                Editable = Rec.Code <> '';
                SubPageLink = "User Task Group Code" = field(Code);
            }
        }
    }

    actions
    {
    }
}