Page 9982 Word Templates Related FactBox in 28

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

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/Word Templates/src/WordTemplatesRelatedFactbox.Page.al57 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 list part factbox to view related entities for Word templates.
/// </summary>
page 9982 "Word Templates Related FactBox"
{
    PageType = ListPart;
    ApplicationArea = All;
    UsageCategory = Administration;
    Caption = 'Related Entities';
    SourceTable = "Word Templates Related Table";
    Editable = false;
    InsertAllowed = false;
    ModifyAllowed = false;
    DeleteAllowed = false;
    Permissions = tabledata "Word Templates Related Table" = r;
    Extensible = false;
    InherentEntitlements = X;
    InherentPermissions = X;

    layout
    {
        area(Content)
        {
            repeater(Tables)
            {
                Caption = 'Related Entities';

                field("Table ID"; Rec."Related Table ID")
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the id of the related entity.';
                    Visible = false;
                }
                field("Table Caption"; Rec."Related Table Caption")
                {
                    ApplicationArea = All;
                    Caption = 'Name';
                    ToolTip = 'Specifies the related entity.';
                    Editable = false;
                }
                field("Related Table Code"; Rec."Related Table Code")
                {
                    ApplicationArea = All;
                    Caption = 'Field Prefix';
                    ToolTip = 'Specifies a prefix that will indicate that the field is from the related entity when you are setting up the template. For example, if you enter SALES, the field names are prefixed with SALES_. The prefix must be unique.';
                }
            }
        }
    }
}