TilSessionUser Table

<< Click to Display Table of Contents >>

Navigation:  iVend Database Database > Tables >

TilSessionUser Table

Navigation: iVend Database Database > Tables >

hm_btn_navigate_prevhm_btn_navigate_tophm_btn_navigate_next

iVend 6.6 Database Help

TilSessionUser Table

Collapse All Expand All

iVend Database Database : TilSessionUser Table

Description

Stores the various till user session details.

Properties

Creation Date

4/13/2015 12:00 PM

File Group

PRIMARY

Text File Group

 

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

TillUserSessionKey

Primary Key

VarWChar

50

 

 

 

 

TillSessionKey

Refers to the till session key

VarWChar

50

 

 

 

 

TillKey

Refers to the till key. See also Till

VarWChar

50

 

 

 

 

POSKey

Refers to the POS key. See also POS

VarWChar

50

 

 

 

 

UserKey

Refers to the user key. See also User

VarWChar

50

 

 

 

 

StartDate

Refers to the start date of the till session for this user

DBTimeStamp

4

 

 

 

 

EndDate

Refers to the end date of the till session for this user

DBTimeStamp

4

dbimages_tick

 

 

 

Status

Refers to the status of the user.

Valid values are:

Open = 0

Closed = 1

Integer

4

 

 

 

 

Created

Date of creation of this record

DBTimeStamp

4

 

 

 

 

Modified

Date of last modification of this record

DBTimeStamp

4

 

(getdate())

 

 

CreatedBy

Reference of user who has created this record. See also Security User

VarWChar

50

 

 

 

 

ModifiedBy

Reference of user who has modified this record. See also Security User

VarWChar

50

 

 

 

Indexes

Index

Description

Primary

Unique

IX_TilSessionUser

 

 

 

PK_FinTillUserSession

 

dbimages_tick

dbimages_tick

Objects that depend on TilSessionUser

 

Database Object

Object Type

Description

Dep Level

RemoveTill procedure

RemoveTill

Stored Procedure

Removes a Till from the selected POS

1

TrxCompleteTransactionUpdates procedure

TrxCompleteTransactionUpdates

Stored Procedure

 

1

UseDrawer procedure

UseDrawer

Stored Procedure

Creates a valid Till User session depending on the Cash drawer selected by the user

1

SQL

SET ANSI_NULLS ON

SET QUOTED_IDENTIFIER ON

CREATE TABLE [dbo].[TilSessionUser](

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

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

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

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

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

[StartDate] [datetime] NOT NULL,

[EndDate] [datetime] NULL,

[Status] [int] NOT NULL,

[Created] [datetime] NOT NULL,

[Modified] [datetime] NOT NULL,

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

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

CONSTRAINT [PK_FinTillUserSession] PRIMARY KEY CLUSTERED

(

[TillUserSessionKey] 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].[TilSessionUser] ADD CONSTRAINT [DF_TilSessionUser_Modified] DEFAULT (getdate()) FOR [Modified]

See Also

Related Objects

iVend Database Database

 

 


© 2019 All Rights Reserved.

Send comments on this topic.