Page 6310 PBI Job Act. v. Budg. Price
- App
- Base Application
- Namespace
- Microsoft.Integration.PowerBI
- Versions
- 17-28
- Source table
- 6305
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Integration/PowerBI/ReportingData/PBIJobActvBudgPrice.Page.al54 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.Integration.PowerBI;
using Microsoft.Projects.Project.Analysis;
page 6310 "PBI Job Act. v. Budg. Price"
{
Caption = 'PBI Project Act. v. Budg. Price';
Editable = false;
PageType = List;
SourceTable = "Power BI Chart Buffer";
SourceTableTemporary = true;
layout
{
area(content)
{
repeater(Group)
{
field("Measure No."; Rec."Measure No.")
{
ApplicationArea = All;
Caption = 'Project No.';
}
field("Measure Name"; Rec."Measure Name")
{
ApplicationArea = All;
Caption = 'Measure Name';
}
field(Value; Rec.Value)
{
ApplicationArea = All;
Caption = 'Value';
}
}
}
}
actions
{
}
trigger OnOpenPage()
var
PBIJobChartCalc: Codeunit "PBI Job Chart Calc.";
begin
PBIJobChartCalc.GetValues(Rec, "Job Chart Type"::"Actual to Budget Price".AsInteger());
end;
}