Query 1319 Sales by Cust. Grp. Chart Mgt.

App
Base Application
Namespace
Microsoft.Sales.Analysis
Versions
20-28

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Sales/Analysis/SalesByCustGrpChartMgt.Query.al39 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.Sales.Analysis;

using Microsoft.Sales.Customer;

query 1319 "Sales by Cust. Grp. Chart Mgt."
{
    Access = Internal;
    DataAccessIntent = ReadOnly;

    elements
    {
        dataitem(Customer_Posting_Group; "Customer Posting Group")
        {
            column(Code; Code)
            {
            }

            dataitem(Customer; Customer)
            {
                DataItemLink = "Customer Posting Group" = Customer_Posting_Group.Code;

                filter(Date_Filter; "Date Filter")
                {

                }

                column(Sales__LCY_; "Sales (LCY)")
                {
                    Method = Sum;
                }
            }
        }
    }
}