DBA Data[Home] [Help]

APPS.PO_INQ_SV dependencies on PO_LINES_ALL

Line 856: l_db_amount po_lines_all.amount%type;

852: ) IS
853:
854: l_po_header_id number;
855: l_quantity_released number;
856: l_db_amount po_lines_all.amount%type;
857: l_value_basis po_line_types_b.order_type_lookup_code%type;
858:
859: BEGIN
860:

Line 891: from po_lines_all pol,

887: plt.order_type_lookup_code
888: into l_po_header_id,
889: l_db_amount, -- SERVICES FPJ
890: l_value_basis -- SERVICES FPJ
891: from po_lines_all pol,
892: po_line_types_b plt
893: where pol.po_line_id = x_po_line_id
894: and pol.line_type_id = plt.line_type_id;
895: Exception