This is what I was given that worked, if any ever needs something like this again.
CREATE TABLE #InventoryUOM
(Company char(1), StoreID numeric(5), itemnum numeric(9), UnitofMeasure char(20), Item_Price numeric(9,2))
INSERT INTO #InventoryUOM
SELECT InventoryUOM.Company...