标签:to_char bsp reference head items int ons ade strong
1.创建PO
PO_HEADERS_ALL
select po_header_id from po_headers_all where segment1 =;
select * from po_headers_all where po_header_id =;
po_lines_all
select * from po_lines_all where po_header_id =;
po_line_locations_all
select * from po_line_locations_all where po_header_id =;
po_distributions_all
select * from po_distributions_all where po_header_id =;
po_releases_all
Select * FROM po_releases_all Where po_header_id =;
2.一旦PO收货,则收货数据将转移至接收及库存的表中
RCV_SHIPMENT_HEADERS
SELECT *
FROM rcv_accounting_events
WHERE rcv_transaction_id IN (SELECT transaction_id
FROM rcv_transactions
WHERE po_header_id = );
标签:to_char bsp reference head items int ons ade strong
原文地址:http://www.cnblogs.com/ebsblog/p/6811461.html