Page 6007 Res. Availability Lines (SM)
- App
- Base Application
- Namespace
- Microsoft.Service.Analysis
- Versions
- 17-28
- Source table
- 928
Procedures, 2Events, 2Obsolete, 1
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Service/Analysis/ResAvailabilityLinesSM.Page.al181 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.Service.Analysis;
using Microsoft.Foundation.Enums;
using Microsoft.Foundation.Period;
using Microsoft.Projects.Resources.Analysis;
using Microsoft.Projects.Resources.Resource;
using Microsoft.Service.Document;
using System.Utilities;
page 6007 "Res. Availability Lines (SM)"
{
Caption = 'Lines';
DeleteAllowed = false;
Editable = false;
InsertAllowed = false;
LinksAllowed = false;
PageType = ListPart;
SaveValues = true;
SourceTable = "Res. Availability Buffer";
SourceTableTemporary = true;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Period Start"; Rec."Period Start")
{
ApplicationArea = Basic, Suite;
Caption = 'Period Start';
ToolTip = 'Specifies a series of dates according to the selected time interval.';
}
field("Period Name"; Rec."Period Name")
{
ApplicationArea = Basic, Suite;
Caption = 'Period Name';
ToolTip = 'Specifies the name of the period shown in the line.';
}
field(Capacity; Rec.Capacity)
{
ApplicationArea = Manufacturing;
Caption = 'Capacity';
DecimalPlaces = 0 : 5;
ToolTip = 'Specifies the total capacity for the corresponding time period.';
trigger OnDrillDown()
var
ResCapacityEntry: Record "Res. Capacity Entry";
IsHandled: Boolean;
begin
ResCapacityEntry.SetRange("Resource No.", Res."No.");
ResCapacityEntry.SetRange(Date, Rec."Period Start", Rec."Period End");
IsHandled := false;
OnAfterCapacityOnDrillDown(ResCapacityEntry, IsHandled);
if IsHandled then
exit;
PAGE.RunModal(0, ResCapacityEntry);
end;
}
#pragma warning disable AA0100
field("Res.""Qty. on Service Order"""; Rec."Qty. on Service Order")
#pragma warning restore AA0100
{
ApplicationArea = Service;
Caption = 'Qty. on Service Order';
DecimalPlaces = 0 : 5;
ToolTip = 'Specifies how many units of the item are allocated to service orders, meaning listed on outstanding service order lines.';
trigger OnDrillDown()
begin
ServOrderAlloc.SetCurrentKey("Resource No.", "Document Type", "Allocation Date", Status, Posted);
ServOrderAlloc.SetRange("Resource No.", Res."No.");
ServOrderAlloc.SetFilter("Document Type", '%1|%2', ServOrderAlloc."Document Type"::Quote, ServOrderAlloc."Document Type"::Order);
ServOrderAlloc.SetRange("Allocation Date", Rec."Period Start", Rec."Period End");
ServOrderAlloc.SetFilter(Status, '=%1|%2', ServOrderAlloc.Status::Active, ServOrderAlloc.Status::Finished);
ServOrderAlloc.SetRange(Posted, false);
PAGE.RunModal(0, ServOrderAlloc);
end;
}
field(NetAvailability; Rec."Net Availability")
{
ApplicationArea = Basic, Suite;
Caption = 'Net Availability';
DecimalPlaces = 0 : 5;
ToolTip = 'Specifies capacity, minus the quantity on order, minus the projects quotes allocation.';
}
}
}
}
actions
{
}
trigger OnAfterGetRecord()
begin
if DateRec.Get(Rec."Period Type", Rec."Period Start") then;
CalcLine();
end;
trigger OnFindRecord(Which: Text) FoundDate: Boolean
var
VariantRec: Variant;
begin
VariantRec := Rec;
FoundDate := PeriodFormLinesMgt.FindDate(VariantRec, DateRec, Which, PeriodType.AsInteger());
Rec := VariantRec;
end;
trigger OnNextRecord(Steps: Integer) ResultSteps: Integer
var
VariantRec: Variant;
begin
VariantRec := Rec;
ResultSteps := PeriodFormLinesMgt.NextDate(VariantRec, DateRec, Steps, PeriodType.AsInteger());
Rec := VariantRec;
end;
trigger OnOpenPage()
begin
Rec.Reset();
end;
var
ServOrderAlloc: Record "Service Order Allocation";
DateRec: Record Date;
PeriodFormLinesMgt: Codeunit "Period Form Lines Mgt.";
PeriodType: Enum "Analysis Period Type";
AmountType: Enum "Analysis Amount Type";
protected var
Res: Record Resource;
procedure SetLines(var NewRes: Record Resource; NewPeriodType: Enum "Analysis Period Type"; NewAmountType: Enum "Analysis Amount Type")
begin
Res.Copy(NewRes);
Rec.DeleteAll();
PeriodType := NewPeriodType;
AmountType := NewAmountType;
CurrPage.Update(false);
end;
local procedure SetDateFilter()
begin
if AmountType = AmountType::"Net Change" then
Res.SetRange("Date Filter", Rec."Period Start", Rec."Period End")
else
Res.SetRange("Date Filter", 0D, Rec."Period End");
end;
local procedure CalcLine()
begin
SetDateFilter();
Res.CalcFields(Capacity, "Qty. on Service Order");
Rec.Capacity := Res.Capacity;
Rec."Qty. on Service Order" := Res."Qty. on Service Order";
Rec."Net Availability" := Rec.Capacity - Rec."Qty. on Service Order";
OnAfterCalcLine(Res, Rec);
end;
[IntegrationEvent(true, false)]
local procedure OnAfterCalcLine(var Resource: Record Resource; var ResAvailabilityBuffer: Record "Res. Availability Buffer")
begin
end;
[IntegrationEvent(false, false)]
local procedure OnAfterCapacityOnDrillDown(var ResCapacityEntry: Record "Res. Capacity Entry"; var IsHandled: Boolean)
begin
end;
}