InvLocationStockTransfer Table

<< Click to Display Table of Contents >>

Navigation:  iVend Database Database > Tables >

InvLocationStockTransfer Table

Navigation: iVend Database Database > Tables >

hm_btn_navigate_prevhm_btn_navigate_tophm_btn_navigate_next

iVend 6.6 Database Help

InvLocationStockTransfer Table

Collapse All Expand All

iVend Database Database : InvLocationStockTransfer Table

Description

Stores the Inter location document information.

Properties

Creation Date

9/18/2015 10:05 AM

File Group

PRIMARY

Text File Group

PRIMARY

System Object

dbimages_boolean-false

Published for Replication

dbimages_boolean-false

Rows

0

Data Space Used

0.00 KB

Index Space Used

0.00 KB

Columns

 

Column Name

Description

Datatype

Length

Allow Nulls

Default

Formula

Primary Key

LocationStockTransferKey

Primary Key

VarWChar

50

 

 

 

 

WarehouseKey

Reference Key of Warehouse. See also InvWarehouse.

VarWChar

50

dbimages_tick

 

 

 

FromLocationKey

Reference Key of Location. See also InvLocation.

VarWChar

50

dbimages_tick

 

 

 

ToLocationKey

Reference Key of Location. See also InvLocation.

VarWChar

50

dbimages_tick

 

 

 

SiteId

Refers to the Site Id

Integer

4

 

 

 

 

BusinessDate

Refers to the date on which the location stock transfer is done

DBTimeStamp

4

 

 

 

 

RequestNumber

Reference number of location stock transfer

VarWChar

50

 

 

 

 

RequestedDate

Requested date for location stock transfer, on which location stock transfer will be done

DBTimeStamp

4

 

 

 

 

ReferenceNumber1

Refers to the reference no 1

VarWChar

50

dbimages_tick

 

 

 

ReferenceNumber2

Refers to the reference no 2

VarWChar

50

dbimages_tick

 

 

 

CommentKey

Reference key of the comment. See also Comment

VarWChar

50

dbimages_tick

 

 

 

BranchCode

For future use

VarWChar

50

dbimages_tick

 

 

 

AccountingID

Maps to the unique id in the ERP system

VarWChar

50

dbimages_tick

 

 

 

SalesPersonKey

Reference key of the Sales Person. See also Employee

VarWChar

50

dbimages_tick

 

 

 

SourceType

For future use

Integer

4

 

 

 

 

SourceKey

For future use

VarWChar

50

 

((0))

 

 

POSDocumentNumberSeriesKey

Refrence key of document number series

VarWChar

50

dbimages_tick

((0))

 

 

ReasonCodeKey

Reference Key of Reason Code. See also CfgReasonCode.

VarWChar

50

dbimages_tick

((0))

 

 

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 created this record. See also Security User

VarWChar

50

 

 

 

 

Comments

Stores comments.

VarWChar

4000

dbimages_tick

 

 

 

Id

 

VarWChar

20

dbimages_tick

 

 

 

Description

 

VarWChar

100

dbimages_tick

 

 

 

IsDeleted

 

Boolean

1

dbimages_tick

 

 

Indexes

Index

Description

Primary

Unique

PK_InvLocationStockTransfer

 

dbimages_tick

dbimages_tick

Objects that depend on InvLocationStockTransfer

 

Database Object

Object Type

Description

Dep Level

ReplicationRecordsToSend procedure

ReplicationRecordsToSend

Stored Procedure

 

1

SQL

SET ANSI_NULLS ON

SET QUOTED_IDENTIFIER ON

CREATE TABLE [dbo].[InvLocationStockTransfer](

[LocationStockTransferKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,

[WarehouseKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[FromLocationKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[ToLocationKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[SiteId] [int] NOT NULL,

[BusinessDate] [datetime] NOT NULL,

[RequestNumber] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,

[RequestedDate] [datetime] NOT NULL,

[ReferenceNumber1] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[ReferenceNumber2] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[CommentKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[BranchCode] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[AccountingID] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[SalesPersonKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[SourceType] [int] NOT NULL,

[SourceKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,

[POSDocumentNumberSeriesKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[ReasonCodeKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS 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,

[Comments] [nvarchar](4000) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[Id] [nvarchar](20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[Description] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[IsDeleted] [bit] NULL,

CONSTRAINT [PK_InvLocationStockTransfer] PRIMARY KEY CLUSTERED

(

[LocationStockTransferKey] 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].[InvLocationStockTransfer] ADD CONSTRAINT [DF_InvLocationStockTransfer_SourceKey] DEFAULT ((0)) FOR [SourceKey]

ALTER TABLE [dbo].[InvLocationStockTransfer] ADD CONSTRAINT [DF_InvLocationStockTransfer_POSDocumentNumberSeriesKey] DEFAULT ((0)) FOR [POSDocumentNumberSeriesKey]

ALTER TABLE [dbo].[InvLocationStockTransfer] ADD CONSTRAINT [DF_InvLocationStockTransfer_ReasonCodeKey] DEFAULT ((0)) FOR [ReasonCodeKey]

See Also

Related Objects

iVend Database Database

 

 


© 2019 All Rights Reserved.

Send comments on this topic.