Query : PO, Supplier and Inventory Item
Select pha.segment1 “PO_NUMBER”,pla.line_num,plla.shipment_num,pv.segment1 “Oracle_Supplier_number”, msib.segment1 “item_number”,pla.item_revision, pla.item_description,NULL as “Delivery_date”, NULL as “Blank Column”, pla.unit_price, pha.rate,plla.Quantity_received,plla.Quantity_rejected,(pla.unit_price*pla.Quantity) as “Line_Amount”, NULL as “ITEM_COST”, NULL as “Amount”, pla.VENDOR_PRODUCT_NUMfrom apps. PO_HEADERS_ALL pha,apps. PO_VENDORS pv,apps. PO_VENDOR_SITES_ALL pvsa,apps. PO_LINES_ALL pla,apps. MTL_SYSTEM_ITEMS_B msib,apps. PO_LINE_LOCATIONS_ALL pllawhere pha.org_id=’xxxx’AND pha.org_id=pvsa.org_idAND pv.vendor_id=pha.vendor_idAND pvsa.vendor_id=pv.vendor_idAND pha.po_header_id=pla.po_header_id(+)–AND pha.po_header_id=plla.po_header_idAND plla.po_line_id(+)=pla.po_line_id–AND msib.organization_id=’xxxx’AND pla.item_id=msib.inventory_item_id(+)Order by pha.segment1
Recent Comments