Page 5501 Balance Sheet Entity, source in 29
Source29
src/Layers/W1/BaseApp/Integration/Entity/BalanceSheetEntity.Page.al74 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.Entity;
using Microsoft.Integration.Graph;
page 5501 "Balance Sheet Entity"
{
Caption = 'balanceSheet', Locked = true;
DeleteAllowed = false;
Editable = false;
InsertAllowed = false;
ModifyAllowed = false;
SourceTable = "Balance Sheet Buffer";
PageType = List;
SourceTableTemporary = true;
layout
{
area(content)
{
repeater(Group)
{
field(lineNumber; Rec."Line No.")
{
ApplicationArea = All;
Caption = 'LineNumber', Locked = true;
}
field(display; Rec.Description)
{
ApplicationArea = All;
Caption = 'Description', Locked = true;
}
field(balance; Rec.Balance)
{
ApplicationArea = All;
AutoFormatType = 0;
BlankZero = true;
Caption = 'Balance', Locked = true;
}
field(lineType; Rec."Line Type")
{
ApplicationArea = All;
Caption = 'LineType', Locked = true;
}
field(indentation; Rec.Indentation)
{
ApplicationArea = All;
Caption = 'Indentation', Locked = true;
}
field(dateFilter; Rec."Date Filter")
{
ApplicationArea = All;
Caption = 'DateFilter', Locked = true;
}
}
}
}
actions
{
}
trigger OnOpenPage()
var
GraphMgtReports: Codeunit "Graph Mgt - Reports";
RecVariant: Variant;
begin
RecVariant := Rec;
GraphMgtReports.SetUpBalanceSheetAPIData(RecVariant);
end;
}