Page 9370 Analysis View List Purchase
- App
- Base Application
- Namespace
- Microsoft.Purchases.Analysis
- Versions
- 17-28
- Source table
- 7152
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Purchases/Analysis/AnalysisViewListPurchase.Page.al144 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.Purchases.Analysis;
using Microsoft.Inventory.Analysis;
page 9370 "Analysis View List Purchase"
{
ApplicationArea = Dimensions, PurchaseAnalysis;
Caption = 'Purchase Analysis Views';
CardPageID = "Purchase Analysis View Card";
DataCaptionFields = "Analysis Area";
Editable = false;
PageType = List;
SourceTable = "Item Analysis View";
SourceTableView = where("Analysis Area" = const(Purchase));
UsageCategory = ReportsAndAnalysis;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Code"; Rec.Code)
{
ApplicationArea = PurchaseAnalysis;
ToolTip = 'Specifies a code for the analysis view.';
}
field(Name; Rec.Name)
{
ApplicationArea = PurchaseAnalysis;
ToolTip = 'Specifies the name of the analysis view.';
}
field("Include Budgets"; Rec."Include Budgets")
{
ApplicationArea = PurchaseBudget;
ToolTip = 'Specifies whether to include an update of analysis view budget entries, when updating an analysis view.';
}
field("Last Date Updated"; Rec."Last Date Updated")
{
ApplicationArea = PurchaseAnalysis;
Editable = false;
ToolTip = 'Specifies the date on which the analysis view was last updated.';
}
field("Dimension 1 Code"; Rec."Dimension 1 Code")
{
ApplicationArea = Dimensions;
ToolTip = 'Specifies one of the four dimensions that you can include in an analysis view.';
}
field("Dimension 2 Code"; Rec."Dimension 2 Code")
{
ApplicationArea = Dimensions;
ToolTip = 'Specifies one of the four dimensions that you can include in an analysis view.';
}
field("Dimension 3 Code"; Rec."Dimension 3 Code")
{
ApplicationArea = Dimensions;
ToolTip = 'Specifies one of the four dimensions that you can include in an analysis view.';
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
actions
{
area(navigation)
{
group("&Analysis")
{
Caption = '&Analysis';
Image = AnalysisView;
action(PageItemAnalysisViewFilter)
{
ApplicationArea = PurchaseAnalysis;
Caption = 'Filter';
Image = "Filter";
RunObject = Page "Item Analysis View Filter";
RunPageLink = "Analysis Area" = field("Analysis Area"),
"Analysis View Code" = field(Code);
ToolTip = 'Apply the filter.';
}
}
}
area(processing)
{
action(EditAnalysisView)
{
ApplicationArea = PurchaseAnalysis;
Caption = 'Edit Analysis View';
Image = Edit;
ToolTip = 'Edit the settings for the analysis view such as a column or line.';
trigger OnAction()
var
PurchAnalysisbyDim: Page "Purch. Analysis by Dimensions";
begin
PurchAnalysisbyDim.SetCurrentAnalysisViewCode(Rec.Code);
PurchAnalysisbyDim.Run();
end;
}
action("&Update")
{
ApplicationArea = PurchaseAnalysis;
Caption = '&Update';
Image = Refresh;
RunObject = Codeunit "Update Item Analysis View";
ToolTip = 'Get the latest entries into the analysis view.';
}
}
area(Promoted)
{
group(Category_Process)
{
Caption = 'Process';
actionref(EditAnalysisView_Promoted; EditAnalysisView)
{
}
actionref("&Update_Promoted"; "&Update")
{
}
}
}
}
}