Report 7311 Bin Creation Wksh. Report, source in 29

Source29

src/Layers/W1/BaseApp/Warehouse/Reports/BinCreationWkshReport.Report.al118 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.Warehouse.Reports;

using Microsoft.Warehouse.Structure;

report 7311 "Bin Creation Wksh. Report"
{
    Caption = 'Bin Creation Wksh. Report';
    DefaultRenderingLayout = RDLCLayout;

    dataset
    {
        dataitem("Bin Creation Worksheet Line"; "Bin Creation Worksheet Line")
        {
            DataItemTableView = sorting("Location Code", "Zone Code", "Bin Code", "Item No.", "Variant Code");
            RequestFilterFields = "Worksheet Template Name", Name;
            column(TodayFormatted; Format(Today, 0, 4))
            {
            }
            column(CompanyName; COMPANYPROPERTY.DisplayName())
            {
            }
            column(LocCode_BinCreateWkshLine; "Location Code")
            {
                IncludeCaption = true;
            }
            column(WkShTmpltName_BinCreateWkshLine; "Worksheet Template Name")
            {
                IncludeCaption = true;
            }
            column(Name_BinCreateWkshLine; Name)
            {
                IncludeCaption = true;
            }
            column(ZoneCode_BinCreateWkshLine; "Zone Code")
            {
                IncludeCaption = true;
            }
            column(BinCode_BinCreateWkshLine; "Bin Code")
            {
                IncludeCaption = true;
            }
            column(Desc_BinCreateWkshLine; Description)
            {
                IncludeCaption = true;
            }
            column(BinTypeCode_BinCreateWkshLine; "Bin Type Code")
            {
                IncludeCaption = true;
            }
            column(WhseClassCode_BinCreateWkshLine; "Warehouse Class Code")
            {
                IncludeCaption = true;
            }
            column(BlkMvmt_BinCreateWkshLine; "Block Movement")
            {
                IncludeCaption = true;
            }
            column(SplEquipCode_BinCreateWkshLine; "Special Equipment Code")
            {
                IncludeCaption = true;
            }
            column(BinRanking_BinCreateWkshLine; "Bin Ranking")
            {
                IncludeCaption = true;
            }
            column(MaxCubage_BinCreateWkshLine; "Maximum Cubage")
            {
                IncludeCaption = true;
            }
            column(MaxWeight_BinCreateWkshLine; "Maximum Weight")
            {
                IncludeCaption = true;
            }
            column(BinCreationWorksheetLineReportCaption; BinCreationWorksheetLineReportCaptionLbl)
            {
            }
            column(CurrReportPageNoCaption; CurrReportPageNoCaptionLbl)
            {
            }
        }
    }

    requestpage
    {

        layout
        {
        }

        actions
        {
        }
    }

    rendering
    {
        layout(RDLCLayout)
        {
            Type = RDLC;
            LayoutFile = './Warehouse/Reports/BinCreationWkshReport.rdlc';
            Summary = 'Report layout made in the legacy RDLC format. Use an RDLC editor to modify the layout.';
        }
    }

    labels
    {
    }

    var
        BinCreationWorksheetLineReportCaptionLbl: Label 'Bin Creation Worksheet Line Report';
        CurrReportPageNoCaptionLbl: Label 'Page';
}