TrxTransactionInstallmentDetail Table

<< Click to Display Table of Contents >>

Navigation:  iVend Database Database > Tables >

TrxTransactionInstallmentDetail Table

Navigation: iVend Database Database > Tables >

hm_btn_navigate_prevhm_btn_navigate_tophm_btn_navigate_next

iVend 6.6 Database Help

TrxTransactionInstallmentDetail Table

Collapse All Expand All

iVend Database Database : TrxTransactionInstallmentDetail Table

Description

Defines the installments details of all those transactions which have a layaway plan attached to it.

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

InstallmentDetailKey

System generated Primary key of the table. See also Transaction

VarWChar

50

 

 

 

 

TransactionKey

Refers to the transaction key.

VarWChar

50

 

 

 

 

SourceType

Refers to the type of transaction.

Valid values are:

Layaways = 0

Integer

4

 

 

 

 

SourceKey

Refers to the TransactionLayawayKey.

VarWChar

50

dbimages_tick

 

 

 

InstallmentNumber

Refers to the number of installments in which the amount is to be paid.

Integer

4

 

 

 

 

InstallmentDate

Refers to the date on which each installment is due.

DBTimeStamp

4

 

 

 

 

Amount

Refers to the amount of each installment.

Numeric

9 (20,5)

 

 

 

 

PaidAmount

Refers to amount paid against the installment.

Numeric

9 (20,5)

 

 

 

 

PaidDate

Date on which the installment is paid.

DBTimeStamp

4

dbimages_tick

 

 

 

Balance

Amount that remains to be paid.

Numeric

9 (20,5)

 

 

 

 

Status

Refers to the layaway status.

Valid values are:

Open = 0

Closed = 1

Cancelled = 2

Integer

4

 

 

 

Indexes

Index

Description

Primary

Unique

IX_TrxTransactionInstallmentDetail

 

 

 

PK_TrxTransactionInstallmentDetail

 

dbimages_tick

dbimages_tick

Objects that depend on TrxTransactionInstallmentDetail

 

Database Object

Object Type

Description

Dep Level

rpt_LayAway procedure

rpt_LayAway

Stored Procedure

 

1

TrxCompleteTransactionUpdates procedure

TrxCompleteTransactionUpdates

Stored Procedure

 

1

TrxGenerateLayawayInstallments procedure

TrxGenerateLayawayInstallments

Stored Procedure

Generates Layaway installments for the Layaway transaction

1

TrxGenerateLayawayInstallmentsForSaleLevel procedure

TrxGenerateLayawayInstallmentsForSaleLevel

Stored Procedure

Generates Layaway installments for the Layaway transaction

1

TrxGetLaybyInstallmentPlan procedure

TrxGetLaybyInstallmentPlan

Stored Procedure

Computes the Layaway details like Duration, Starting Date etc for the layaway depending on the Layaway Plan

1

TrxHandleARPayments procedure

TrxHandleARPayments

Stored Procedure

Handles updates related to On Account payments

1

TrxInventoryUpdateLaybyCancellationItem procedure

TrxInventoryUpdateLaybyCancellationItem

Stored Procedure

 

1

TrxInventoryUpdateLaybyItem procedure

TrxInventoryUpdateLaybyItem

Stored Procedure

 

2

SQL

SET ANSI_NULLS ON

SET QUOTED_IDENTIFIER ON

CREATE TABLE [dbo].[TrxTransactionInstallmentDetail](

[InstallmentDetailKey] [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,

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

[InstallmentNumber] [int] NOT NULL,

[InstallmentDate] [datetime] NOT NULL,

[Amount] [decimal](20, 5) NOT NULL,

[PaidAmount] [decimal](20, 5) NOT NULL,

[PaidDate] [datetime] NULL,

[Balance] [decimal](20, 5) NOT NULL,

[Status] [int] NOT NULL,

CONSTRAINT [PK_TrxTransactionInstallmentDetail] PRIMARY KEY CLUSTERED

(

[InstallmentDetailKey] 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

Related Objects

iVend Database Database

 

 


© 2019 All Rights Reserved.

Send comments on this topic.