Query 776 Device, source in 25

Source242526272829metadata in 25

src/System Application/App/Device/src/Device.Query.al36 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 System.Security.AccessControl;

/// <summary>
/// Displays a list of devices.
/// </summary>
query 776 Device
{
    Caption = 'Device';
    InherentEntitlements = X;
    InherentPermissions = X;
    Permissions = tabledata Device = r;

    elements
    {
        dataitem(Device; Device)
        {
            column(MAC_Address; "MAC Address")
            {
            }
            column(Name; Name)
            {
            }
            column(Device_Type; "Device Type")
            {
            }
            column(Enabled; Enabled)
            {
            }
        }
    }
}