public InventQtyOnHand qtyOnHand(ItemId _item , InventLocationId _locationId)
{
InventOnhand inventOnhand;
inventOnhand =InventOnhand::newItemId(_item);
inventOnhand.parmInventLocationId(_locationId);
return inventOnhand.availPhysical();
}