I have the Insert Into before the I call the stored Procedure. The parameters with the values are coming back but the table does not get updated.
INSERT INTO @BestMoveFromTo (LocationFromName ,LocationToName, OccupiedPos, Capacity, NumberOfMoves, NumberofFreeSpaces, Percentage)
EXEC [WMS.Handling].[GetPalletMoveEfficiency] @LocationFromName ,@LocationToName, @OccupiedPos OUT, @Capacity OUT,
@NumberOfMoves OUT, @NumberofFreeSpaces OUT, @Percentage OUT
Thank you