|
<< Click to Display Table of Contents >> Navigation: iVend Database Database > Tables > InvForeCastTemp Table |
Navigation: iVend Database Database > Tables >
iVend 6.6 Database Help
InvForeCastTemp Table
Collapse All Expand All
iVend Database Database : InvForeCastTemp Table |
Description
Stores the temporary data for the forecasting
Properties
Creation Date |
4/13/2015 12:00 PM |
File Group |
PRIMARY |
Text File Group |
|
System Object |
|
Published for Replication |
|
Rows |
0 |
Data Space Used |
0.00 KB |
Index Space Used |
0.00 KB |
Columns
|
Column Name |
Description |
Datatype |
Length |
Allow Nulls |
Default |
Formula |
|
ForecastPlanningKey |
Reference Key of Forecast Planning. See also Forecast Planning. |
VarWChar |
50 |
|
|
|
|
ForecastMethod |
Refers to the type of Forecasting Method. Valid values are: ExpertSelection = 0, ExponentialSmoothing = 1, BoxJenkins = 2, SimppleMovingAverage = 4, Discrete = 5, IntermittentData = 6, CurveFitting = 12, VerySimpleModels = 14 |
SmallInt |
2 |
|
|
|
|
ForecastSubMethod |
Refers to the type of Forecasting Sub Method. For Forecasting Method = ExponentialSmoothing Valid values are: Auto = 0, Simple = 1, Holt = 2, Winter = 3 For Forecasting Method = CurveFittingType Valid values are: Auto = 0, StraightLine = 1, Quadratic = 2, Exponential = 3 GrowthCurve = 4 |
SmallInt |
2 |
|
|
|
|
ForecastDate |
Hold the value of month of the historical sales. |
SmallInt |
2 |
|
|
|
|
WarehouseKey |
Reference Key of Warehouse. See also Warehouse. |
VarWChar |
50 |
|
|
|
|
ProductKey |
Reference Key of Product. See also Product. |
VarWChar |
50 |
|
|
|
|
Quantity |
Hold the value of sold quantity product. |
Numeric |
9 (20,5) |
|
|
|
|
AppliedForeCastMethod |
Valid values are : ExpertSelection = 0, ExponentialSmoothing = 1, BoxJenkins = 2, SimpleMovingAverage = 4, Discrete = 5, IntermittentData = 6, CurveFitting = 12, VerySimpleModels = 14, |
SmallInt |
2 |
|
|
|
Indexes
Index |
Description |
Primary |
Unique |
|
|
|
SQL
SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON CREATE TABLE [dbo].[InvForeCastTemp]( [ForecastPlanningKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [ForecastMethod] [smallint] NOT NULL, [ForecastSubMethod] [smallint] NOT NULL, [ForecastDate] [smallint] NOT NULL, [WarehouseKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [ProductKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Quantity] [decimal](20, 5) NOT NULL, [AppliedForeCastMethod] [smallint] NULL, CONSTRAINT [PK_InvForeCastTemp] PRIMARY KEY CLUSTERED ( [ForecastPlanningKey] ASC, [ForecastMethod] ASC, [ForecastSubMethod] ASC, [ForecastDate] ASC, [WarehouseKey] ASC, [ProductKey] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] |
See Also
© 2019 All Rights Reserved.
Send comments on this topic.