|
<< Click to Display Table of Contents >> Navigation: iVend Database Database > Tables > TrxTransactionFulfillmentDetail Table |
Navigation: iVend Database Database > Tables >
iVend 6.6 Database Help
TrxTransactionFulfillmentDetail Table
Collapse All Expand All
iVend Database Database : TrxTransactionFulfillmentDetail Table |
Description
Defines the details of all the transactions which have a fulfillment plan attached to them.
Properties
Creation Date |
4/13/2015 12:00 PM |
File Group |
PRIMARY |
Text File Group |
PRIMARY |
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 |
|
FulfillmentDetailKey |
System generated Primary key of the table. |
VarWChar |
50 |
|
|
|
|
FulfillmentKey |
Refers to the Fulfilment key of the current fulfillment. |
VarWChar |
50 |
|
|
|
|
TransactionKey |
Refers to the Transaction key of the current transaction. See also Transaction |
VarWChar |
50 |
|
|
|
|
SourceType |
Refers to the source type. Valid values are: Sale = 0 Order = 1 Layaway = 2 |
Integer |
4 |
|
|
|
|
SourceDetailKey |
Refers to the key of the sourceType of the transaction. |
VarWChar |
50 |
|
|
|
|
WarehouseKey |
Refers to the warehouse keyfrom which the product will be fulfilled.See also warehouse |
VarWChar |
50 |
|
|
|
|
ProductKey |
Refers to the key of the products selected for this transaction.See also Product |
VarWChar |
50 |
|
|
|
|
ProductDetailKey |
Refers to the product in case they are serial or batch tracked. |
VarWChar |
50 |
|
|
|
|
ProductDetailNumber |
Refers to the serial or batch number |
VarWChar |
50 |
|
|
|
|
Quantity |
Refers to the quantity of each product. |
Numeric |
9 (20,5) |
|
|
|
|
QuantityOnHold |
Refers to the quantity of product that has been put on hold. |
Numeric |
9 (20,5) |
|
|
|
|
QuantityFulfilled |
Refers to the quantity of the product that has been fulfilled |
Numeric |
9 (20,5) |
|
|
|
|
CommentKey |
Refers to the key of the added comment. See also Comment |
VarWChar |
50 |
|
|
|
|
ProductPromisedDate |
Refers to the date at which the goods are actually delivered to the customer. |
DBTimeStamp |
4 |
|
|
|
|
Created |
Date of creation of this record |
DBTimeStamp |
4 |
|
|
|
|
CreatedBy |
Reference of user who has created this record. See also Security User |
VarWChar |
50 |
|
|
|
|
Modified |
Date of last modification of this record |
DBTimeStamp |
4 |
|
|
|
|
ModifiedBy |
Reference of user who has modified this record. See also Security User |
VarWChar |
50 |
|
|
|
|
IsDeleted |
Value is True if the record has been deleted from the system. Record is always Soft Deleted |
Boolean |
1 |
|
|
|
|
Comments |
Stores comments |
VarWChar |
4000 |
|
|
|
|
PickingQuantity |
|
Numeric |
9 (20,5) |
|
((0)) |
|
|
PickedQuantity |
|
Numeric |
9 (20,5) |
|
((0)) |
|
Indexes
Index |
Description |
Primary |
Unique |
|
|
|
|
|
|
|
Objects that depend on TrxTransactionFulfillmentDetail
|
Database Object |
Object Type |
Description |
Dep Level |
|
Stored Procedure |
|
1 |
|
|
User Defined Function |
|
1 |
|
|
Stored Procedure |
|
1 |
|
|
Stored Procedure |
|
2 |
|
|
Stored Procedure |
|
1 |
|
|
Stored Procedure |
|
1 |
|
|
Stored Procedure |
|
1 |
|
|
Stored Procedure |
Handles updates related to Order item |
1 |
|
|
Stored Procedure |
Handles updates related to delivery of a Sale item |
1 |
|
|
Stored Procedure |
Handles updates related to sale item |
1 |
|
|
Stored Procedure |
|
1 |
|
|
Stored Procedure |
Handles updates related to On Account payments |
1 |
|
|
Stored Procedure |
|
1 |
|
|
View |
|
1 |
SQL
SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON CREATE TABLE [dbo].[TrxTransactionFulfillmentDetail]( [FulfillmentDetailKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [FulfillmentKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [TransactionKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [SourceType] [int] NOT NULL, [SourceDetailKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS 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, [ProductDetailKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [ProductDetailNumber] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [Quantity] [decimal](20, 5) NOT NULL, [QuantityOnHold] [decimal](20, 5) NOT NULL, [QuantityFulfilled] [decimal](20, 5) NOT NULL, [CommentKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [ProductPromisedDate] [datetime] NOT NULL, [Created] [datetime] NOT NULL, [CreatedBy] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Modified] [datetime] NOT NULL, [ModifiedBy] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [IsDeleted] [bit] NOT NULL, [Comments] [nvarchar](4000) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [PickingQuantity] [decimal](20, 5) NULL, [PickedQuantity] [decimal](20, 5) NULL, CONSTRAINT [PK_FulFullfillmentDetail] PRIMARY KEY CLUSTERED ( [FulfillmentDetailKey] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] ALTER TABLE [dbo].[TrxTransactionFulfillmentDetail] ADD CONSTRAINT [DF__TrxTransa__Picki__58BCECDB] DEFAULT ((0)) FOR [PickingQuantity] ALTER TABLE [dbo].[TrxTransactionFulfillmentDetail] ADD CONSTRAINT [DF__TrxTransa__Picke__59B11114] DEFAULT ((0)) FOR [PickedQuantity] |
See Also
© 2019 All Rights Reserved.
Send comments on this topic.