Table 1754 Field Content Buffer, source in 24

Source242526272829metadata in 24

src/System Application/App/Data Classification/src/FieldContentBuffer.Table.al35 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.Privacy;

table 1754 "Field Content Buffer"
{
    Access = Internal;
    TableType = Temporary;
    InherentEntitlements = X;
    InherentPermissions = X;


    fields
    {
        field(1; Value; Text[250])
        {
            DataClassification = SystemMetadata;
            Description = 'The value of the field in the database';
        }
    }

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

}