begin
insert into pos.product ...;
update pos.store set ... where  st_br_id = 'xxx' ;update pos.dc_inventory set ...
where dinv_product_id ='XXXX';update pos.product_check_detail
where pcd_id = 'XXXX';
commit;
exception
when others then
rollback;
end;
/