• J Livingston SQL (4/10/2013)


    just to clarify....you say "voucherPRETSRET doesnt contain any data but needs to be checked"...but there is a PURCHASE RETURN in the sample data for voucher table.....???

    maybe sensible to test with a SALES RETURN at this stage as well......

    also I asked that you please provide expected results for the sample data........

    regards

    this is table definition for voucherPRETSRET

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE TABLE [voucherPRETSRET](

    [srno] [int] IDENTITY(1,1) NOT NULL,

    [vouchertype] [nvarchar](50) NULL,

    [voucherprefix] [nvarchar](50) NULL,

    [voucherno] [int] NULL,

    [oppvouchertype] [nvarchar](50) NULL,

    [oppvoucherprefix] [nvarchar](50) NULL,

    [oppvoucherno] [int] NULL,

    [oppinvtype] [nvarchar](50) NULL,

    [selectedvouchersrno] [int] NULL,

    [item] [nvarchar](50) NULL,

    [batchno] [nvarchar](50) NULL,

    [qty] [float] NULL,

    [unit] [nvarchar](50) NULL,

    [rate] [float] NULL,

    [itemamt] [float] NULL,

    [vatclass] [nvarchar](50) NULL,

    [vat] [float] NULL,

    [adtaxclass] [nvarchar](50) NULL,

    [adtax] [float] NULL,

    [total] [float] NULL,

    CONSTRAINT [PK_voucherPRETSRET] PRIMARY KEY CLUSTERED

    (

    [srno] ASC

    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]

    ) ON [PRIMARY]

    GO