Table 4150 Temp Blob in 28

App
System Application
Namespace
System.Utilities

Fields, 2Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/BLOB Storage/src/TempBlob.Table.al38 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.Utilities;

table 4150 "Temp Blob"
{
    Access = Internal;
    InherentEntitlements = X;
    InherentPermissions = X;
    TableType = Temporary;


    fields
    {
        field(1; "Primary Key"; Integer)
        {
            DataClassification = SystemMetadata;
        }
        field(2; Blob; Blob)
        {
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(Key1; "Primary Key")
        {
            Clustered = true;
        }
    }

}

Fields, 2

IdNameTypeObsolete
1Primary KeyInteger-
2BlobBlob-

Keys, 1

NameFieldsObsolete
Key1, clusteredPrimary Key-