ConTrxTransactionPayment Table

<< Click to Display Table of Contents >>

Navigation:  iVend Database Database > Tables >

ConTrxTransactionPayment Table

Navigation: iVend Database Database > Tables >

hm_btn_navigate_prevhm_btn_navigate_tophm_btn_navigate_next

iVend 6.6 Database Help

ConTrxTransactionPayment Table

Collapse All Expand All

iVend Database Database : ConTrxTransactionPayment Table

Description

Stores the consolidated values for the Transaction payments

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

TransactionPaymentKey

Value is the system generated key of the transaction payment.

VarWChar

50

 

 

 

 

TransactionKey

Value is key of the transaction to which this payment has been applied. See also Transaction

VarWChar

50

 

 

 

 

PaymentTypeKey

Value is the payment type key.See also Payment Type

VarWChar

50

 

 

 

 

TenderType

Value is the tender type of the payment.

VarWChar

50

 

 

 

 

DetailKey

For future use

VarWChar

50

dbimages_tick

 

 

 

DetailType

For future use

Integer

4

dbimages_tick

 

 

 

Amount

Total amount paid using this payment type

Numeric

9 (20,5)

 

 

 

 

ChangeAmount

Value is the change amount

Numeric

9 (20,5)

 

 

 

 

CashBackAmount

Value is the cash back amount to be given back to customer.

Numeric

9 (20,5)

 

 

 

 

Name

Value is the name of the customer.

VarWChar

50

dbimages_tick

 

 

 

ExpirationDate

Value is the expiry date of the credit card or debit card or voucher depending on the tender type used

DBTimeStamp

4

dbimages_tick

 

 

 

ZipCode

Value is the zipcode of customer

VarWChar

50

dbimages_tick

 

 

 

AccountType

Value is the card type .

Integer

4

 

 

 

 

Address

Value is the customer address in case of the credit card.

VarWChar

50

dbimages_tick

 

 

 

City

Value is the customer address city in case of the credit card.

VarWChar

50

dbimages_tick

 

 

 

State

Value is the customer address state in case of the credit card.

VarWChar

50

dbimages_tick

 

 

 

CurrencyKey

Refernce key of currency, in which payment would be accepted

VarWChar

50

dbimages_tick

 

 

 

ExchangeRateKey

Refernce key of exchange rate of foreign currency

VarWChar

50

dbimages_tick

 

 

 

IsVoided

Value is true if the payment has been voided.

Boolean

1

 

 

 

 

HasAuthorization

Value is true if the payment has a third party authorization attached to it.

Boolean

1

dbimages_tick

 

 

 

HasCardSwipe

Value is true if the customer card has been swiped and the card number has not been entered manually by pos user.

Boolean

1

dbimages_tick

 

 

 

AuthorizationCode

Value is the code returned from authorization.

VarWChar

50

dbimages_tick

 

 

 

PaymentReferenceNumber

Payment reference number provided by the third party aurhorizer, used in case of Authorized type of payments

VarWChar

50

dbimages_tick

 

 

 

RoundingAmount

Value is the amount by which the payment amount has been rounded.

Numeric

9 (20,5)

dbimages_tick

 

 

 

OriginalReferenceNumber

Original Payment reference number provided by the third party aurhorizer, used in case of Authorized type of payments for refunds

VarWChar

100

dbimages_tick

 

 

 

Refunded

For future use

Boolean

1

dbimages_tick

 

 

 

CardNumber

Last 4 digits of credit / debit cards or any other voucher etc.

VarWChar

50

dbimages_tick

 

 

 

ForeignCurrencyAmount

Specifies amount of foreign currency.

Numeric

9 (20,5)

 

((0))

 

 

DiscountAmount

Value is the amount for the discount provided on this transaction

Numeric

9 (20,5)

dbimages_tick

 

 

 

NetPayableAmount

Value is the net amount paid for the transaction

Numeric

9 (20,5)

dbimages_tick

 

 

 

CheckDueDate

Captures the due date of the payments made by check

DBTimeStamp

4

dbimages_tick

 

 

Indexes

Index

Description

Primary

Unique

PK_ConTrxTransactionPayment

 

dbimages_tick

dbimages_tick

Objects that depend on ConTrxTransactionPayment

 

Database Object

Object Type

Description

Dep Level

Integration_Consolidated_TransactionPayment procedure

Integration_Consolidated_TransactionPayment

Stored Procedure

 

1

SQL

SET ANSI_NULLS ON

SET QUOTED_IDENTIFIER ON

CREATE TABLE [dbo].[ConTrxTransactionPayment](

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

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

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

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

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

[DetailType] [int] NULL,

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

[ChangeAmount] [numeric](20, 5) NOT NULL,

[CashBackAmount] [numeric](20, 5) NOT NULL,

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

[ExpirationDate] [datetime] NULL,

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

[AccountType] [int] NOT NULL,

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

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

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

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

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

[IsVoided] [bit] NOT NULL,

[HasAuthorization] [bit] NULL,

[HasCardSwipe] [bit] NULL,

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

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

[RoundingAmount] [numeric](20, 5) NULL,

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

[Refunded] [bit] NULL,

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

[ForeignCurrencyAmount] [numeric](20, 5) NOT NULL,

[DiscountAmount] [numeric](20, 5) NULL,

[NetPayableAmount] [numeric](20, 5) NULL,

[CheckDueDate] [datetime] NULL,

CONSTRAINT [PK_ConTrxTransactionPayment] PRIMARY KEY CLUSTERED

(

[TransactionPaymentKey] 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].[ConTrxTransactionPayment] ADD CONSTRAINT [DF_ConTrxTransactionPayment_ForeignCurrencyAmount] DEFAULT ((0)) FOR [ForeignCurrencyAmount]

See Also

Related Objects

iVend Database Database

 

 


© 2019 All Rights Reserved.

Send comments on this topic.