Table 806 Geolocation

App
Base Application
Namespace
Microsoft.EServices.OnlineMap
Versions
17-28

Fields, 3Keys, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/eServices/OnlineMap/Geolocation.Table.al42 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.eServices.OnlineMap;

table 806 Geolocation
{
    Caption = 'Geolocation';
    DataClassification = CustomerContent;

    fields
    {
        field(1; ID; Guid)
        {
            Caption = 'ID';
        }
        field(2; Latitude; Decimal)
        {
            Caption = 'Latitude';
            AutoFormatType = 0;
        }
        field(3; Longitude; Decimal)
        {
            Caption = 'Longitude';
            AutoFormatType = 0;
        }
    }

    keys
    {
        key(Key1; ID)
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}