If the ITEMMASTER.QTYONHAND field is inccorrect (usually due to someone importing a value into this field) you are able to re-calculate the ItemMaster qty based on actual INVENTORY records by running the Stored Procedure below from as a std script.
(You should never import a value into this field as it is internally maintained by Ostendo)
begin
executeSQL('execute procedure UPDATE_ITEMQTYS');
showmessage('ITEMMASTER.ONHANDQTY Field Updated');
end.