Page 791 G/L Accounts ListPart
- App
- Base Application
- Namespace
- Microsoft.Finance.GeneralLedger.Account
- Versions
- 17-28
- Source table
- 15
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Finance/GeneralLedger/Account/GLAccountsListPart.Page.al59 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.Finance.GeneralLedger.Account;
/// <summary>
/// A list part page displaying G/L accounts filtered to show only posting accounts.
/// This page is typically used as a subpage or part within other forms to allow selection of posting-type G/L accounts.
/// </summary>
page 791 "G/L Accounts ListPart"
{
Caption = 'G/L Accounts ListPart';
Editable = false;
PageType = ListPart;
SourceTable = "G/L Account";
SourceTableView = where("Account Type" = const(Posting));
layout
{
area(content)
{
repeater(Group)
{
field("No."; Rec."No.")
{
ApplicationArea = Basic, Suite;
}
field(Name; Rec.Name)
{
ApplicationArea = Basic, Suite;
ToolTip = 'Specifies the name of the record.';
}
field("Income/Balance"; Rec."Income/Balance")
{
ApplicationArea = Basic, Suite;
ToolTip = 'Specifies is the general ledger account is an income statement account or a balance sheet account.';
}
field("Account Category"; Rec."Account Category")
{
ApplicationArea = Basic, Suite;
ToolTip = 'Specifies the category of the G/L account.';
}
field("Account Subcategory Descript."; Rec."Account Subcategory Descript.")
{
ApplicationArea = Basic, Suite;
Caption = 'Account Subcategory';
ToolTip = 'Specifies the subcategory of the account category of the G/L account.';
}
}
}
}
actions
{
}
}