Page 191 Incoming Documents Setup

App
Base Application
Namespace
Microsoft.EServices.EDocument
Versions
17-28
Source table
131

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/eServices/EDocument/IncomingDocumentsSetup.Page.al74 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.EServices.EDocument;

page 191 "Incoming Documents Setup"
{
    AdditionalSearchTerms = 'electronic document setup,e-invoice setup,ocr setup,ecommerce setup,document exchange setup,import invoice setup';
    ApplicationArea = Suite;
    Caption = 'Incoming Documents Setup';
    DeleteAllowed = false;
    InsertAllowed = false;
    PageType = Card;
    SourceTable = "Incoming Documents Setup";
    UsageCategory = Administration;

    layout
    {
        area(content)
        {
            field("General Journal Template Name"; Rec."General Journal Template Name")
            {
                ApplicationArea = Basic, Suite;
            }
            field("General Journal Batch Name"; Rec."General Journal Batch Name")
            {
                ApplicationArea = Basic, Suite;
            }
            field("Require Approval To Create"; Rec."Require Approval To Create")
            {
                ApplicationArea = Suite;
            }
        }
    }

    actions
    {
        area(navigation)
        {
            action(Approvers)
            {
                ApplicationArea = Suite;
                Caption = 'Approvers';
                Image = Users;
                RunObject = Page "Incoming Document Approvers";
                ToolTip = 'View or add incoming document approvers.';
                Visible = false;
            }
        }
        area(Promoted)
        {
            group(Category_Process)
            {
                Caption = 'Process';

                actionref(Approvers_Promoted; Approvers)
                {
                }
            }
        }
    }

    trigger OnOpenPage()
    begin
        Rec.Reset();
        if not Rec.Get() then begin
            Rec.Init();
            Rec.Insert();
        end;
    end;
}