Table 82 Item Journal Template

App
Base Application
Namespace
Microsoft.Inventory.Journal
Versions
17-28

Fields, 18Keys, 2Procedures, 4Events, 6

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Inventory/Journal/ItemJournalTemplate.Table.al318 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.Inventory.Journal;

using Microsoft.Foundation.AuditCodes;
using Microsoft.Foundation.NoSeries;
using Microsoft.Inventory.Counting.Journal;
using Microsoft.Inventory.Reports;
using Microsoft.Inventory.Tracking;
using Microsoft.Warehouse.Reports;
using Microsoft.Warehouse.Structure;
using System.Reflection;

table 82 "Item Journal Template"
{
    Caption = 'Item Journal Template';
    LookupPageID = "Item Journal Template List";
    ReplicateData = true;
    DataClassification = CustomerContent;

    fields
    {
        field(1; Name; Code[10])
        {
            Caption = 'Name';
            ToolTip = 'Specifies the name of the item journal you are creating.';
            NotBlank = true;
        }
        field(2; Description; Text[80])
        {
            Caption = 'Description';
            ToolTip = 'Specifies a brief description of the item journal template you are creating.';
        }
        field(5; "Test Report ID"; Integer)
        {
            Caption = 'Test Report ID';
            ToolTip = 'Specifies the test report that is printed when you click Actions, point to Posting, and then click Test Report.';
            TableRelation = AllObjWithCaption."Object ID" where("Object Type" = const(Report));
        }
        field(6; "Page ID"; Integer)
        {
            Caption = 'Page ID';
            ToolTip = 'Specifies the number of the page that is used to show the journal or worksheet that uses the template.';
            TableRelation = AllObjWithCaption."Object ID" where("Object Type" = const(Page));

            trigger OnValidate()
            begin
                if "Page ID" = 0 then
                    Validate(Type);
            end;
        }
        field(7; "Posting Report ID"; Integer)
        {
            Caption = 'Posting Report ID';
            ToolTip = 'Specifies the posting report that is printed when you click Post and Print.';
            TableRelation = AllObjWithCaption."Object ID" where("Object Type" = const(Report));
        }
        field(8; "Force Posting Report"; Boolean)
        {
            Caption = 'Force Posting Report';
            ToolTip = 'Specifies whether a report is printed automatically when you post.';
        }
        field(9; Type; Enum "Item Journal Template Type")
        {
            Caption = 'Type';
            ToolTip = 'Specifies the type of transaction that will be used with this item journal template.';

            trigger OnValidate()
            begin
                "Test Report ID" := REPORT::"Inventory Posting - Test";
                "Posting Report ID" := REPORT::"Item Register - Quantity";
                "Whse. Register Report ID" := Report::"Warehouse Register - Quantity";
                SourceCodeSetup.Get();
                case Type of
                    Type::Item:
                        begin
                            "Source Code" := SourceCodeSetup."Item Journal";
                            "Page ID" := Page::"Item Journal";
                        end;
                    Type::Transfer:
                        begin
                            "Source Code" := SourceCodeSetup."Item Reclass. Journal";
                            "Page ID" := Page::"Item Reclass. Journal";
                        end;
                    Type::"Phys. Inventory":
                        begin
                            "Source Code" := SourceCodeSetup."Phys. Inventory Journal";
                            "Page ID" := Page::"Phys. Inventory Journal";
                        end;
                    Type::Revaluation:
                        begin
                            "Source Code" := SourceCodeSetup."Revaluation Journal";
                            "Page ID" := Page::"Revaluation Journal";
                            "Test Report ID" := REPORT::"Revaluation Posting - Test";
                            "Posting Report ID" := REPORT::"Item Register - Value";
                        end;
                end;
                if Recurring then
                    case Type of
                        Type::Item:
                            "Page ID" := Page::"Recurring Item Jnl.";
                    end;

                OnAfterValidateType(Rec, SourceCodeSetup);
            end;
        }
        field(10; "Source Code"; Code[10])
        {
            Caption = 'Source Code';
            ToolTip = 'Specifies the source code that specifies where the entry was created.';
            TableRelation = "Source Code";

            trigger OnValidate()
            begin
                ItemJnlLine.SetRange("Journal Template Name", Name);
                ItemJnlLine.ModifyAll("Source Code", "Source Code");
                Modify();
            end;
        }
        field(11; "Reason Code"; Code[10])
        {
            Caption = 'Reason Code';
            ToolTip = 'Specifies the reason code, a supplementary source code that enables you to trace the entry.';
            TableRelation = "Reason Code";
        }
        field(12; Recurring; Boolean)
        {
            Caption = 'Recurring';
            ToolTip = 'Specifies whether the item journal template will be a recurring journal.';

            trigger OnValidate()
            begin
                Validate(Type);
                if Recurring then
                    TestField("No. Series", '');
            end;
        }
        field(15; "Test Report Caption"; Text[250])
        {
            CalcFormula = lookup(AllObjWithCaption."Object Caption" where("Object Type" = const(Report),
                                                                           "Object ID" = field("Test Report ID")));
            Caption = 'Test Report Caption';
            ToolTip = 'Specifies the name of the test report that is printed when you print the item journal.';
            Editable = false;
            FieldClass = FlowField;
        }
        field(16; "Page Caption"; Text[250])
        {
            CalcFormula = lookup(AllObjWithCaption."Object Caption" where("Object Type" = const(Page),
                                                                           "Object ID" = field("Page ID")));
            Caption = 'Page Caption';
            ToolTip = 'Specifies the displayed name of the journal or worksheet that uses the template.';
            Editable = false;
            FieldClass = FlowField;
        }
        field(17; "Posting Report Caption"; Text[250])
        {
            CalcFormula = lookup(AllObjWithCaption."Object Caption" where("Object Type" = const(Report),
                                                                           "Object ID" = field("Posting Report ID")));
            Caption = 'Posting Report Caption';
            ToolTip = 'Specifies the name of the report that is printed when you print the item journal.';
            Editable = false;
            FieldClass = FlowField;
        }
        field(19; "No. Series"; Code[20])
        {
            Caption = 'No. Series';
            ToolTip = 'Specifies the number series from which entry or record numbers are assigned to new entries or records.';
            TableRelation = "No. Series";

            trigger OnValidate()
            begin
                if "No. Series" <> '' then begin
                    if Recurring then
                        Error(
                          Text000,
                          FieldCaption("Posting No. Series"));
                    if "No. Series" = "Posting No. Series" then
                        "Posting No. Series" := '';
                end;
            end;
        }
        field(20; "Posting No. Series"; Code[20])
        {
            Caption = 'Posting No. Series';
            ToolTip = 'Specifies the number series code used to assign document numbers to ledger entries that are posted from journals using this template.';
            TableRelation = "No. Series";

            trigger OnValidate()
            begin
                if ("Posting No. Series" = "No. Series") and ("Posting No. Series" <> '') then
                    FieldError("Posting No. Series", StrSubstNo(Text001, "Posting No. Series"));
            end;
        }
        field(21; "Whse. Register Report ID"; Integer)
        {
            AccessByPermission = TableData "Bin Content" = R;
            Caption = 'Whse. Register Report ID';
            ToolTip = 'Specifies the ID assigned to the Whse. Register Report.';
            TableRelation = AllObjWithCaption."Object ID" where("Object Type" = const(Report));
        }
        field(22; "Whse. Register Report Caption"; Text[250])
        {
            AccessByPermission = TableData "Bin Content" = R;
            CalcFormula = lookup(AllObjWithCaption."Object Caption" where("Object Type" = const(Report),
                                                                           "Object ID" = field("Whse. Register Report ID")));
            Caption = 'Whse. Register Report Caption';
            ToolTip = 'Specifies the name of the report that is printed when you print the item journal.';
            Editable = false;
            FieldClass = FlowField;
        }
        field(30; "Increment Batch Name"; Boolean)
        {
            Caption = 'Increment Batch Name';
            ToolTip = 'Specifies if batch names using this template are automatically incremented. Example: The posting following BATCH001 is automatically named BATCH002.';
        }
    }

    keys
    {
        key(Key1; Name)
        {
            Clustered = true;
        }
        key(Key2; Type)
        {
        }
    }

    fieldgroups
    {
        fieldgroup(DropDown; Name, Description, Type)
        {
        }
    }

    trigger OnDelete()
    begin
        ItemJnlLine.SetRange("Journal Template Name", Name);
        ItemJnlLine.DeleteAll(true);
        ItemJnlBatch.SetRange("Journal Template Name", Name);
        ItemJnlBatch.DeleteAll();
    end;

    trigger OnInsert()
    begin
        Validate("Page ID");
    end;

    trigger OnRename()
    begin
        ReservEngineMgt.RenamePointer(DATABASE::"Item Journal Line",
          0, xRec.Name, '', 0, 0,
          0, Name, '', 0, 0);
    end;

    var
        ItemJnlBatch: Record "Item Journal Batch";
        ItemJnlLine: Record "Item Journal Line";
        SourceCodeSetup: Record "Source Code Setup";
        ReservEngineMgt: Codeunit "Reservation Engine Mgt.";

#pragma warning disable AA0074
#pragma warning disable AA0470
        Text000: Label 'Only the %1 field can be filled in on recurring journals.';
        Text001: Label 'must not be %1';
#pragma warning restore AA0470
#pragma warning restore AA0074

    procedure GetCapacityTemplateType() Type: Enum "Item Journal Template Type"
    begin
        OnGetCapacityTemplateType(Type);
    end;

    procedure GetConsumptionTemplateType() Type: Enum "Item Journal Template Type"
    begin
        OnGetConsumptionTemplateType(Type);
    end;

    procedure GetOutputTemplateType() Type: Enum "Item Journal Template Type"
    begin
        OnGetOutputTemplateType(Type);
    end;

    procedure GetProdOrderTemplateType() Type: Enum "Item Journal Template Type"
    begin
        OnGetProdOrderTemplateType(Type);
    end;

    [IntegrationEvent(false, false)]
    local procedure OnAfterValidateType(var ItemJournalTemplate: Record "Item Journal Template"; SourceCodeSetup: Record "Source Code Setup")
    begin
    end;

    [IntegrationEvent(false, false)]
    local procedure OnGetConsumptionTemplateType(var Type: Enum "Item Journal Template Type")
    begin
    end;

    [IntegrationEvent(false, false)]
    local procedure OnGetOutputTemplateType(var Type: Enum "Item Journal Template Type")
    begin
    end;

    [IntegrationEvent(false, false)]
    local procedure OnGetCapacityTemplateType(var Type: Enum "Item Journal Template Type")
    begin
    end;

    [IntegrationEvent(false, false)]
    local procedure OnGetProdOrderTemplateType(var Type: Enum "Item Journal Template Type")
    begin
    end;
}