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