Loy_GetTransactionPromotionDetail Stored Procedure

<< Click to Display Table of Contents >>

Navigation:  iVend Database Database > Stored Procedures >

Loy_GetTransactionPromotionDetail Stored Procedure

Navigation: iVend Database Database > Stored Procedures >

hm_btn_navigate_prevhm_btn_navigate_tophm_btn_navigate_next

iVend 6.6 Database Help

Loy_GetTransactionPromotionDetail Stored Procedure

Collapse All Expand All

iVend Database Database : Loy_GetTransactionPromotionDetail Stored Procedure

Properties

Creation Date

4/13/2015 12:00 PM

Encrypted

dbimages_boolean-false

Ansi Nulls

dbimages_boolean-true

Parameters

Parameter

Direction

Description

Data Type

Size

@TransactionKey

In

 

VarWChar

50

@TransactionItemKey

In

 

VarWChar

50

@RETURN_VALUE

Return Value

 

Integer

4

Objects that Loy_GetTransactionPromotionDetail depends on

 

Database Object

Object Type

Description

Dep Level

TrxTransactionPromotionDetail table

TrxTransactionPromotionDetail

Table

Stores the promotion applied details on the transaction

1

Procedure Source Code

CREATE PROCEDURE [dbo].[Loy_GetTransactionPromotionDetail]

@TransactionKey nvarchar(50),

@TransactionItemKey nvarchar(50)

AS

BEGIN

  SELECT

  TransactionPromotionDetailKey,TransactionKey,[Type],TransactionItemKey,

  PromotionKey,Quantity,DiscountAmount,ItemType,

  Sets,PromotionNumber

  FROM       TrxTransactionPromotionDetail

    WHERE TransactionItemKey=@TransactionItemKey and TransactionKey = @TransactionKey

END

See Also

Related Objects

iVend Database Database

 

 


© 2019 All Rights Reserved.

Send comments on this topic.