CustomeLabelReport Stored Procedure

<< Click to Display Table of Contents >>

Navigation:  iVend Database Database > Stored Procedures >

CustomeLabelReport Stored Procedure

Navigation: iVend Database Database > Stored Procedures >

hm_btn_navigate_prevhm_btn_navigate_tophm_btn_navigate_next

iVend 6.6 Database Help

CustomeLabelReport Stored Procedure

Collapse All Expand All

iVend Database Database : CustomeLabelReport 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

@pMachineName

In

 

VarWChar

100

@RETURN_VALUE

Return Value

 

Integer

4

Objects that CustomeLabelReport depends on

 

Database Object

Object Type

Description

Dep Level

CfgEnterprise table

CfgEnterprise

Table

Stores the basic configuration entries for the system . These settings are mandatory for the system to work properly.

3

CfgSiteInformation table

CfgSiteInformation

Table

Stores the site information. Enterprise always has the site id as 1. System Table Warning : Should not be modified directly

3

GenerateLabelData procedure

GenerateLabelData

Stored Procedure

Generates label data depending on the parameter specified

1

GenerateLabelData_Custom procedure

GenerateLabelData_Custom

Stored Procedure

 

2

GetCompanyDateTime function

GetCompanyDateTime

User Defined Function

 

2

InvInventoryItem table

InvInventoryItem

Table

Stores inventory details for each Product for each Warehouse

2

InvProduct table

InvProduct

Table

Stores the product related details.

2

PrnLabelPrintField table

PrnLabelPrintField

Table

Store the fields to be used in label printing

2

PrnLabelPrinting table

PrnLabelPrinting

Table

 

2

RtlStore table

RtlStore

Table

Contains the details of Stores defined in the system.

2

Procedure Source Code

CREATE PROCEDURE [dbo].[CustomeLabelReport]

(

@pMachineName NVarChar(100)   /*Stored Procedure edit by Jyotsna As per discuss with Santosh to execute the irt report in Item label printing*/

-- @pStoreKey BIGINT

)

AS

BEGIN

SET NOCOUNT ON

DECLARE @lStoreKey NVARCHAR(50),

  @lEffectiveDate DateTime,

  @lMachineName NVarChar(100)

--Select @lEffectiveDate = BusinessDate

--From RtlStore

--Where StoreKey = @pStoreKey

--SET @lMachineName = HOST_NAME()

Exec GenerateLabelData @pMachineName, 'False'

END

See Also

Related Objects

iVend Database Database

 

 


© 2019 All Rights Reserved.

Send comments on this topic.