i have on procedure named as VouMasterEntry
that is :-
Code:
Create PROCEDURE [dbo].[VouMasterEntry] 
	-- Add the parameters for the stored procedure here
	@VouNum int,
	@CustID nvarchar(30),
	@VouCat char(10),
	@VouType Char(15),
	@Seldate smalldatetime
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;
...