Query 763 Colm. Layt. Colm. Header Count
- App
- Base Application
- Namespace
- Microsoft.Finance.FinancialReports
- Versions
- 17-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Finance/FinancialReports/ColmLaytColmHeaderCount.Query.al34 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.FinancialReports;
/// <summary>
/// Query to count column layouts by column header for duplicate detection.
/// Identifies column headers used more than once within the same column layout.
/// </summary>
query 763 "Colm. Layt. Colm. Header Count"
{
Caption = 'Colm. Layt. Colm. Header Count';
elements
{
dataitem(Column_Layout; "Column Layout")
{
column(Column_Layout_Name; "Column Layout Name")
{
}
column(Column_Header; "Column Header")
{
}
column(Count_)
{
ColumnFilter = Count_ = filter(> 1);
Method = Count;
}
}
}
}