|
<< Click to Display Table of Contents >> Navigation: iVend Database Database > Stored Procedures > CustomeLabelReport Stored Procedure |
Navigation: iVend Database Database > Stored Procedures >
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 |
|
Ansi Nulls |
|
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 |
|
Table |
Stores the basic configuration entries for the system . These settings are mandatory for the system to work properly. |
3 |
|
|
Table |
Stores the site information. Enterprise always has the site id as 1. System Table Warning : Should not be modified directly |
3 |
|
|
Stored Procedure |
Generates label data depending on the parameter specified |
1 |
|
|
Stored Procedure |
|
2 |
|
|
User Defined Function |
|
2 |
|
|
Table |
Stores inventory details for each Product for each Warehouse |
2 |
|
|
Table |
Stores the product related details. |
2 |
|
|
Table |
Store the fields to be used in label printing |
2 |
|
|
Table |
|
2 |
|
|
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
© 2019 All Rights Reserved.
Send comments on this topic.