If your asking about updating the field on the SQL Server, you can do so by overriding the OnAfterSave() method and if the save was successful, create a business object and update the table.
Example
Button_Click Sub
BOProducts.Qty = BOProducts.Qty - BOOrderItem.Qty
End Sub
Thanks