Report 7312 Bin Content Create Wksh Report

App
Base Application
Namespace
Microsoft.Warehouse.Reports
Versions
17-28

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Warehouse/Reports/BinContentCreateWkshReport.Report.al137 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 7312 "Bin Content Create Wksh Report"
{
    Caption = 'Bin Content Create 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 = "Location Code", "Zone Code", "Bin Code";
            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(WhseClassCode_BinCreateWkshLine; "Warehouse Class Code")
            {
                IncludeCaption = true;
            }
            column(BinType_BinCreateWkshLine; "Bin Type Code")
            {
                IncludeCaption = true;
            }
            column(BlkMvmt_BinCreateWkshLine; "Block Movement")
            {
                IncludeCaption = true;
            }
            column(BinRanking_BinCreateWkshLine; "Bin Ranking")
            {
                IncludeCaption = true;
            }
            column(ItemNo_BinCreateWkshLine; "Item No.")
            {
                IncludeCaption = true;
            }
            column(Desc_BinCreateWkshLine; Description)
            {
                IncludeCaption = true;
            }
            column(MinQty_BinCreateWkshLine; "Min. Qty.")
            {
                IncludeCaption = true;
            }
            column(MaxQty_BinCreateWkshLine; "Max. Qty.")
            {
                IncludeCaption = true;
            }
            column(VariantCode_BinCreateWkshLine; "Variant Code")
            {
                IncludeCaption = true;
            }
            column(QtyPerUOM_BinCreateWkshLine; "Qty. per Unit of Measure")
            {
                IncludeCaption = true;
            }
            column(UOMCode_BinCreateWkshLine; "Unit of Measure Code")
            {
                IncludeCaption = true;
            }
            column(Fixed_BinCreateWkshLine; Fixed)
            {
                IncludeCaption = true;
            }
            column("Fixed"; Format(Fixed))
            {
            }
            column(BinContentCreationWorksheetLineCaption; BinContentCreationWorksheetLineCaptionLbl)
            {
            }
            column(CurrReportPageNoCaption; CurrReportPageNoCaptionLbl)
            {
            }
        }
    }

    requestpage
    {

        layout
        {
        }

        actions
        {
        }
    }

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

    labels
    {
    }

    var
        BinContentCreationWorksheetLineCaptionLbl: Label 'Bin Content Creation Worksheet Line';
        CurrReportPageNoCaptionLbl: Label 'Page';
}