Integration.GetStockHoldingUpdates
Documentation | WideWorldImporters |
Schema | Integration |
Name | GetStockHoldingUpdates |
Helper procedures for the ETL package
Script
CREATE PROCEDURE Integration.GetStockHoldingUpdates WITH EXECUTE AS OWNER AS BEGIN SET NOCOUNT ON; SET XACT_ABORT ON; SELECT sih.QuantityOnHand AS [Quantity On Hand], sih.BinLocation AS [Bin Location], sih.LastStocktakeQuantity AS [Last Stocktake Quantity], sih.LastCostPrice AS [Last Cost Price], sih.ReorderLevel AS [Reorder Level], sih.TargetStockLevel AS [Target Stock Level], sih.StockItemID AS [WWI Stock Item ID] FROM Warehouse.StockItemHoldings AS sih ORDER BY sih.StockItemID; RETURN 0; END; |
Exported: 2019-02-04 23:04, Last imported: 2018-08-10 09:51