Report 99000783 Work Center Load
- App
- Base Application
- Namespace
- Microsoft.Manufacturing.Reports
- Versions
- 17-28
- Obsolete
- Pending 27.0, seen from 27. This report has been replaced by the "Work/Machine Center Load" report and will be removed in a future release.
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Manufacturing/Reports/WorkCenterLoad.Report.al275 lines, Copyright (c) Microsoft Corporation. MIT
#if not CLEAN27
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Manufacturing.Reports;
using Microsoft.Manufacturing.WorkCenter;
using System.Utilities;
report 99000783 "Work Center Load"
{
DefaultRenderingLayout = WorkCenterLoadRDLC;
ApplicationArea = Manufacturing;
Caption = 'Work Center Load (obsolete)';
UsageCategory = ReportsAndAnalysis;
UseSystemPrinter = true;
ObsoleteState = Pending;
ObsoleteReason = 'This report has been replaced by the "Work/Machine Center Load" report and will be removed in a future release.';
ObsoleteTag = '27.0';
dataset
{
dataitem("Work Center Group"; "Work Center Group")
{
PrintOnlyIfDetail = true;
RequestFilterFields = "Code";
column(TodayFormatted; Format(Today, 0, 4))
{
}
column(CompantName; COMPANYPROPERTY.DisplayName())
{
}
column(WorkCntrGroupTblCaptFilt; TableCaption + ':' + WorkCntrGroupFilter)
{
}
column(WorkCntrGroupFilter; WorkCntrGroupFilter)
{
}
column(WorkCntrTableCaptionFilt; "Work Center".TableCaption + ':' + WorkCntrFilter)
{
}
column(WorkCntrFilter; WorkCntrFilter)
{
}
column(Code_WorkCntrGroup; Code)
{
}
column(Name_WorkCntrGroup; Name)
{
}
column(WorkCenterLoadCaption; WorkCenterLoadCaptionLbl)
{
}
column(CurrReportPageNoCaption; CurrReportPageNoCaptionLbl)
{
}
column(CapacityAvailableCaption; CapacityAvailableCaptionLbl)
{
}
column(CapacityEfficiencyCaption; CapacityEfficiencyCaptionLbl)
{
}
dataitem("Integer"; "Integer")
{
DataItemTableView = sorting(Number);
PrintOnlyIfDetail = true;
column(PeriodStartingDate; Format(PeriodStartingDate))
{
}
column(PeriodEndingDate; Format(PeriodEndingDate))
{
}
column(PeriodStartingDateCaption; PeriodStartingDateCaptionLbl)
{
}
column(PeriodEndingDateCaption; PeriodEndingDateCaptionLbl)
{
}
dataitem("Work Center"; "Work Center")
{
DataItemLink = "Work Center Group Code" = field(Code);
DataItemLinkReference = "Work Center Group";
DataItemTableView = sorting("Work Center Group Code");
RequestFilterFields = "Work Shift Filter";
column(No_WorkCntr; "No.")
{
IncludeCaption = true;
}
column(Name_WorkCntr; Name)
{
IncludeCaption = true;
}
column(Capacity_WorkCntr; Capacity)
{
IncludeCaption = true;
}
column(UOMCode_WorkCntr; "Unit of Measure Code")
{
IncludeCaption = true;
}
column(CapacityEffect_WorkCntr; "Capacity (Effective)")
{
IncludeCaption = true;
}
column(ProdOrderNeedQty_WorkCntr; "Prod. Order Need (Qty.)")
{
IncludeCaption = true;
}
column(CapacityAvailable; CapacityAvailable)
{
DecimalPlaces = 0 : 5;
}
column(CapacityEfficiency; CapacityEfficiency)
{
DecimalPlaces = 1 : 1;
}
column(CEMinCapEfficToPrint; CapacityEfficiency > MinCapEfficToPrint)
{
}
trigger OnAfterGetRecord()
begin
CalcFields("Capacity (Effective)", "Prod. Order Need (Qty.)");
CapacityAvailable := "Capacity (Effective)" - "Prod. Order Need (Qty.)";
if "Capacity (Effective)" <> 0 then
CapacityEfficiency := Round("Prod. Order Need (Qty.)" / "Capacity (Effective)" * 100, 0.1)
else
if "Prod. Order Need (Qty.)" <> 0 then
CapacityEfficiency := 100
else
CapacityEfficiency := 0;
if CapacityEfficiency < MinCapEfficToPrint then
CurrReport.Skip();
end;
trigger OnPostDataItem()
begin
PeriodStartingDate := PeriodEndingDate + 1;
end;
trigger OnPreDataItem()
begin
SetRange("Date Filter", PeriodStartingDate, PeriodEndingDate);
end;
}
trigger OnAfterGetRecord()
begin
i := i + 1;
if i > NoOfPeriods then
CurrReport.Break();
PeriodEndingDate := CalcDate(PeriodLength, PeriodStartingDate) - 1;
end;
trigger OnPreDataItem()
begin
i := 0;
PeriodStartingDate := StartingDate;
end;
}
}
}
requestpage
{
AboutTitle = 'About Work Center Load (obsolete)';
AboutText = 'Analyze the load on a work center. ** This report is obsolete and will be removed in a later release.** Please consult the report documentation for alternative ways to get to this data.';
layout
{
area(content)
{
group(Options)
{
Caption = 'Options';
field(StartingDate; StartingDate)
{
ApplicationArea = Manufacturing;
Caption = 'Starting Date';
ToolTip = 'Specifies the starting date for the evaluation.';
}
field(NoOfPeriods; NoOfPeriods)
{
ApplicationArea = Manufacturing;
Caption = 'No. of Periods';
ToolTip = 'Specifies the number of time intervals for which the evaluation is to be created';
}
field(PeriodLength; PeriodLength)
{
ApplicationArea = Manufacturing;
Caption = 'Period Length';
ToolTip = 'Specifies the time interval you have selected to view the report, such as day, week, month, quarter.';
}
field(MinCapEfficToPrint; MinCapEfficToPrint)
{
AutoFormatType = 0;
ApplicationArea = Manufacturing;
Caption = 'Load bigger than (pct.)';
DecimalPlaces = 0 : 5;
ToolTip = 'Specifies a filter to print only work centers whose loads exceed this percentage, for example, if you want to print all work centers with a load of over 95% in order to troubleshoot a particular problem.';
}
}
}
}
actions
{
}
trigger OnInit()
begin
if StartingDate = 0D then
StartingDate := WorkDate();
if Format(PeriodLength) = '' then
Evaluate(PeriodLength, '<1W>');
if NoOfPeriods = 0 then
NoOfPeriods := 4;
end;
}
rendering
{
layout(WorkCenterLoadRDLC)
{
Caption = 'Work Center Load (obsolete)';
Type = RDLC;
LayoutFile = './Manufacturing/Reports/WorkCenterLoad.rdlc';
Summary = 'Report layout made in the legacy RDLC format. Use an RDLC editor to modify the layout.';
}
}
labels
{
}
trigger OnPreReport()
begin
WorkCntrGroupFilter := "Work Center Group".GetFilters();
WorkCntrFilter := "Work Center".GetFilters();
end;
var
PeriodLength: DateFormula;
WorkCntrGroupFilter: Text;
WorkCntrFilter: Text;
StartingDate: Date;
PeriodStartingDate: Date;
PeriodEndingDate: Date;
NoOfPeriods: Integer;
i: Integer;
CapacityAvailable: Decimal;
CapacityEfficiency: Decimal;
MinCapEfficToPrint: Decimal;
WorkCenterLoadCaptionLbl: Label 'Work Center Load';
CurrReportPageNoCaptionLbl: Label 'Page';
CapacityAvailableCaptionLbl: Label 'Available';
CapacityEfficiencyCaptionLbl: Label 'Expected Efficiency';
PeriodStartingDateCaptionLbl: Label 'Period Starting Date';
PeriodEndingDateCaptionLbl: Label 'Period Ending Date';
procedure InitializeRequest(NewStartingDate: Date; NewNoOfPeriods: Integer; NewPeriodLength: DateFormula; NewMinCapEfficToPrint: Decimal)
begin
StartingDate := NewStartingDate;
NoOfPeriods := NewNoOfPeriods;
PeriodLength := NewPeriodLength;
MinCapEfficToPrint := NewMinCapEfficToPrint;
end;
}
#endif