DBA Data[Home] [Help]

APPS.PO_CHANGEORDERWF_PVT dependencies on PO_REQUISITION_LINES_ALL

Line 7794: po_requisition_lines_all porl,

7790: -- curosr to get the ReqHeaderId
7791: cursor c_getReqHdrId(p_po_header_id_csr IN NUMBER) is
7792: select distinct porh.requisition_header_id
7793: from po_requisition_headers_all porh,
7794: po_requisition_lines_all porl,
7795: po_headers_all poh,
7796: po_line_locations_all poll
7797: where porh.requisition_header_id = porl.requisition_header_id AND
7798: porl.line_location_id = poll.line_location_id AND

Line 8371: from po_requisition_lines_all porla,

8367: PROCEDURE getReqNumber(p_po_header_id in number , p_po_release_id in number, x_req_num out nocopy varchar2, x_req_hdr_id out nocopy varchar2) -- RDP(backing)
8368: IS
8369: CURSOR getReqHdrId(c_po_header_id in NUMBER) IS
8370: select distinct(porla.requisition_header_id)
8371: from po_requisition_lines_all porla,
8372: po_line_locations_all polla
8373: where polla.po_header_id = c_po_header_id
8374: and porla.line_location_id = polla.line_location_id;
8375:

Line 8384: from po_requisition_lines_all porla,

8380:
8381: -- for releases
8382: CURSOR getReqHdrId_rel(c_po_header_id in NUMBER, c_po_release_id in NUMBER) IS
8383: select distinct(porla.requisition_header_id)
8384: from po_requisition_lines_all porla,
8385: po_line_locations_all polla
8386: where polla.po_header_id = c_po_header_id
8387: and polla.po_release_id = c_po_release_id
8388: and porla.line_location_id = polla.line_location_id;