Table 2000 Time Series Buffer
- App
- Base Application
- Namespace
- System.AI
- Versions
- 17-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/System/AI/TimeSeriesBuffer.Table.al47 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.AI;
table 2000 "Time Series Buffer"
{
Caption = 'Time Series Buffer';
ReplicateData = false;
DataClassification = CustomerContent;
fields
{
field(1; "Group ID"; Code[50])
{
Caption = 'Group ID';
DataClassification = SystemMetadata;
}
field(2; "Period No."; Integer)
{
Caption = 'Period No.';
DataClassification = SystemMetadata;
}
field(3; "Period Start Date"; Date)
{
Caption = 'Period Start Date';
DataClassification = SystemMetadata;
}
field(4; Value; Decimal)
{
AutoFormatType = 0;
Caption = 'Value';
DataClassification = SystemMetadata;
}
}
keys
{
key(Key1; "Group ID", "Period No.")
{
Clustered = true;
}
}
fieldgroups
{
}
}