|
<< Click to Display Table of Contents >> Navigation: iVend Database Database > Tables > TrxTransactionInstallmentDetail Table |
Navigation: iVend Database Database > Tables >
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 |
|
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 |
|
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 |
|
|
|
|
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 |
|
|
|
|
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 |
|
|
|
|
|
|
|
Objects that depend on TrxTransactionInstallmentDetail
|
Database Object |
Object Type |
Description |
Dep Level |
|
Stored Procedure |
|
1 |
|
|
Stored Procedure |
|
1 |
|
|
Stored Procedure |
Generates Layaway installments for the Layaway transaction |
1 |
|
|
Stored Procedure |
Generates Layaway installments for the Layaway transaction |
1 |
|
|
Stored Procedure |
Computes the Layaway details like Duration, Starting Date etc for the layaway depending on the Layaway Plan |
1 |
|
|
Stored Procedure |
Handles updates related to On Account payments |
1 |
|
|
Stored Procedure |
|
1 |
|
|
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
© 2019 All Rights Reserved.
Send comments on this topic.