You have an alias @CurrentItems with CI , so just use CI :
UPDATE U SET U.Units = U.Units + CI.ItemUnits FROM @CurrentItems CI INNER JOIN U ON U.UId=CI.ItemId;
Also look at your request, you have something like U.UId = CU.ItemID . What is a CU? You made an alias for @CurrentItems with CI, so what is the purpose of CU? If this is a mistake, just a typo, be sure to change any link from CU to CI .
You also do not tell us that U , I hope this is a valid table.
source share