Table 491 Parallel Session Entry, source in 29

Source29

src/Layers/W1/BaseApp/System/ParallelSessionEntry.Table.al48 lines, Copyright (c) Microsoft Corporation. MIT

namespace System.Threading;

table 491 "Parallel Session Entry"
{
    DataClassification = SystemMetadata;
    TableType = Temporary;

    fields
    {
        field(1; ID; GUID)
        {
            DataClassification = SystemMetadata;
        }
        field(2; "Object ID to Run"; Integer)
        {
            DataClassification = SystemMetadata;
        }
        field(3; "Record ID to Process"; RecordId)
        {
            DataClassification = CustomerContent;
        }
        field(4; "File Exists"; Boolean)
        {
            DataClassification = SystemMetadata;
        }
        field(5; Parameter; Text[250])
        {
            DataClassification = SystemMetadata;
        }
        field(6; "Session ID"; Integer)
        {
            DataClassification = SystemMetadata;
        }
        field(7; Processed; Boolean)
        {
            DataClassification = SystemMetadata;
        }
    }

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

}