Forum Replies Created

Viewing 2 posts - 1 through 3 (of 3 total)

  • RE: FIFO problem....

    Yeah , sorry bout the bad image quality here is a temp table and recs. SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE TABLE [dbo].[TempStockMovements](

    [ArticleID] [nchar](10) NULL,

    [StartItems] [decimal](18, 4) NULL,

    [StartValue] [decimal](18, 4) NULL,

    [OrderedItems]...

  • RE: FIFO problem....

    Here is the code with some sample data

    CREATE TABLE dbo.Stock (

    StockID INT IDENTITY(1, 1)

    ...

Viewing 2 posts - 1 through 3 (of 3 total)