TrxARPayment Table

<< Click to Display Table of Contents >>

Navigation:  iVend Database Database > Tables >

TrxARPayment Table

Navigation: iVend Database Database > Tables >

hm_btn_navigate_prevhm_btn_navigate_tophm_btn_navigate_next

iVend 6.6 Database Help

TrxARPayment Table

Collapse All Expand All

iVend Database Database : TrxARPayment Table

Description

Defines the details of the on account payments or any other settlements being done by the customer and the amount.

Properties

Creation Date

4/13/2015 12:00 PM

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

ARPaymentKey

System - generated Primary Key

VarWChar

50

 

 

 

 

TransactionKey

Reference Key of Transaction

VarWChar

50

dbimages_tick

 

 

 

CustomerKey

Reference Key of customer. See also Customer

VarWChar

50

dbimages_tick

 

 

 

Amount

Refers to the amount being settled

Numeric

9 (20,5)

 

 

 

 

CommentKey

Reference Key of comment. See also Comment

VarWChar

50

dbimages_tick

 

 

 

PaymentType

Refers to the payment type.

Valid values are:

ARPayment = 0

SpecialOrder = 1

Sale = 2

Layaway = 3

Integer

4

 

 

 

 

DetailKey

Refers to the detail key.

VarWChar

50

dbimages_tick

 

 

 

Comments

Stores comments.

VarWChar

4000

dbimages_tick

 

 

Indexes

Index

Description

Primary

Unique

PK_TrxARPayment

 

dbimages_tick

dbimages_tick

Objects that depend on TrxARPayment

 

Database Object

Object Type

Description

Dep Level

Integration_ARPayment procedure

Integration_ARPayment

Stored Procedure

 

1

TrxCompleteTransactionUpdates procedure

TrxCompleteTransactionUpdates

Stored Procedure

 

2

TrxHandleARPayments procedure

TrxHandleARPayments

Stored Procedure

Handles updates related to On Account payments

1

TrxInventoryUpdateOrder procedure

TrxInventoryUpdateOrder

Stored Procedure

Handles updates related to Order item

1

TrxInventoryUpdatePaymentDiscount procedure

TrxInventoryUpdatePaymentDiscount

Stored Procedure

Handles updates related to sale item

1

TrxUpdateCustomerBalance procedure

TrxUpdateCustomerBalance

Stored Procedure

 

1

ZTapeReport procedure

ZTapeReport

Stored Procedure

 

1

SQL

SET ANSI_NULLS ON

SET QUOTED_IDENTIFIER ON

CREATE TABLE [dbo].[TrxARPayment](

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

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

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

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

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

[PaymentType] [int] NOT NULL,

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

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

CONSTRAINT [PK_TrxARPayment] PRIMARY KEY CLUSTERED

(

[ARPaymentKey] 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.