Page 1107 Cost Journal Templates

App
Base Application
Namespace
Microsoft.CostAccounting.Journal
Versions
17-28
Source table
1100

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/CostAccounting/Journal/CostJournalTemplates.Page.al76 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.CostAccounting.Journal;

page 1107 "Cost Journal Templates"
{
    ApplicationArea = CostAccounting;
    Caption = 'Cost Journal Templates';
    PageType = List;
    SourceTable = "Cost Journal Template";
    UsageCategory = Lists;

    layout
    {
        area(content)
        {
            repeater(Control4)
            {
                ShowCaption = false;
                field(Name; Rec.Name)
                {
                    ApplicationArea = CostAccounting;
                    ToolTip = 'Specifies the name of the cost journal entry.';
                }
                field(Description; Rec.Description)
                {
                    ApplicationArea = CostAccounting;
                    ToolTip = 'Specifies a description of the cost journal entry.';
                }
                field("Reason Code"; Rec."Reason Code")
                {
                    ApplicationArea = CostAccounting;
                    ToolTip = 'Specifies the reason code, a supplementary source code that enables you to trace the entry.';
                }
                field("Source Code"; Rec."Source Code")
                {
                    ApplicationArea = CostAccounting;
                    ToolTip = 'Specifies the source code that specifies where the entry was created.';
                }
            }
        }
    }

    actions
    {
        area(navigation)
        {
            group("Te&mplates")
            {
                Caption = 'Te&mplates';
                Image = Template;
                action(Batches)
                {
                    ApplicationArea = CostAccounting;
                    Caption = 'Batches';
                    Image = Description;
                    RunObject = Page "Cost Journal Batches";
                    RunPageLink = "Journal Template Name" = field(Name);
                    ToolTip = 'Open the list of journal batches for the journal template. ';
                    Scope = Repeater;
                }
            }
        }
        area(Promoted)
        {
            actionref("Batches_Promoted"; Batches)
            {

            }
        }
    }
}