Page 1509 Workflow - Table Relations

App
Base Application
Namespace
System.Automation
Versions
17-28
Source table
1505

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/System/Workflow/WorkflowTableRelations.Page.al67 lines, Copyright (c) Microsoft Corporation. MIT

namespace System.Automation;

page 1509 "Workflow - Table Relations"
{
    ApplicationArea = Suite;
    Caption = 'Workflow - Table Relations';
    PageType = List;
    SourceTable = "Workflow - Table Relation";
    UsageCategory = Administration;

    layout
    {
        area(content)
        {
            repeater(Control2)
            {
                ShowCaption = false;
                field("Table ID"; Rec."Table ID")
                {
                    ApplicationArea = Suite;
                    ToolTip = 'Specifies the table that is used in the workflow.';
                }
                field("Table Caption"; Rec."Table Caption")
                {
                    ApplicationArea = Suite;
                    ToolTip = 'Specifies the caption of the table that is used in the workflow.';
                }
                field("Field ID"; Rec."Field ID")
                {
                    ApplicationArea = Suite;
                    ToolTip = 'Specifies the field that is used in the workflow.';
                }
                field("Field Caption"; Rec."Field Caption")
                {
                    ApplicationArea = Suite;
                    ToolTip = 'Specifies the caption of the field that is used in the workflow.';
                }
                field("Related Table ID"; Rec."Related Table ID")
                {
                    ApplicationArea = Suite;
                    ToolTip = 'Specifies the related table that is used in the workflow.';
                }
                field("Related Table Caption"; Rec."Related Table Caption")
                {
                    ApplicationArea = Suite;
                    ToolTip = 'Specifies the caption of the related field that is used in the workflow.';
                }
                field("Related Field ID"; Rec."Related Field ID")
                {
                    ApplicationArea = Suite;
                    ToolTip = 'Specifies the related field that is used in the workflow.';
                }
                field("Related Field Caption"; Rec."Related Field Caption")
                {
                    ApplicationArea = Suite;
                    ToolTip = 'Specifies the caption of the related table that is used in the workflow.';
                }
            }
        }
    }

    actions
    {
    }
}