Page 9988 Word Templates Table Lookup in 26

App
System Application
Namespace
System.Integration.Word
Source table
9987

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/Word Templates/src/WordTemplatesTableLookup.Page.al44 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 System.Integration.Word;

/// <summary>
/// A look-up page to select a table to be used in a Word template.
/// </summary>
page 9988 "Word Templates Table Lookup"
{
    PageType = List;
    Caption = 'Word Templates Tables';
    SourceTable = "Word Templates Table";
    Permissions = tabledata "Word Templates Table" = r;
    Extensible = false;
    InherentEntitlements = X;
    InherentPermissions = X;

    layout
    {
        area(Content)
        {
            repeater(GroupName)
            {
                field(ID; Rec."Table ID")
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the Table ID.';
                    Caption = 'Id';
                }
                field(Name; Rec."Table Caption")
                {
                    ApplicationArea = All;
                    Caption = 'Caption';
                    ToolTip = 'Specifies the table caption.';
                }
            }
        }
    }

}