DBA Data[Home] [Help]

APPS.PO_INQ_SV dependencies on PO_LINES_ALL

Line 804: l_db_amount po_lines_all.amount%type;

800: ) IS
801:
802: l_po_header_id number;
803: l_quantity_released number;
804: l_db_amount po_lines_all.amount%type;
805: l_value_basis po_line_types_b.order_type_lookup_code%type;
806:
807: BEGIN
808:

Line 839: from po_lines_all pol,

835: plt.order_type_lookup_code
836: into l_po_header_id,
837: l_db_amount, -- SERVICES FPJ
838: l_value_basis -- SERVICES FPJ
839: from po_lines_all pol,
840: po_line_types_b plt
841: where pol.po_line_id = x_po_line_id
842: and pol.line_type_id = plt.line_type_id;
843: Exception