|
问题解决了,直接update错误的billed的数量
update po_line_locations_all
set quantity_billed=0 ----74925
where po_header_id in ----156026
(select po_header_id from po_headers_all
where segment1=22824
and org_id=102)
update po_distributions_all
set quantity_billed=0 ----74925
where po_header_id=156026
commit;
over |
|