DBA Data[Home] [Help]

APPS.AP_OTHR_CHRG_MATCH_PKG dependencies on AP_INVOICE_LINES

Line 7: charge_amt ap_invoice_lines.amount%TYPE,

3:
4: -- Type definition of pl/sql table for passing special charges
5: TYPE othr_chrg_rectype IS RECORD
6: (rcv_txn_id rcv_transactions.transaction_id%TYPE,
7: charge_amt ap_invoice_lines.amount%TYPE,
8: base_amt ap_invoice_lines.base_amount%TYPE,
9: rounding_amt ap_invoice_lines.rounding_amt%TYPE,
10: rcv_qty rcv_transactions.quantity%TYPE);
11:

Line 8: base_amt ap_invoice_lines.base_amount%TYPE,

4: -- Type definition of pl/sql table for passing special charges
5: TYPE othr_chrg_rectype IS RECORD
6: (rcv_txn_id rcv_transactions.transaction_id%TYPE,
7: charge_amt ap_invoice_lines.amount%TYPE,
8: base_amt ap_invoice_lines.base_amount%TYPE,
9: rounding_amt ap_invoice_lines.rounding_amt%TYPE,
10: rcv_qty rcv_transactions.quantity%TYPE);
11:
12: TYPE othr_chrg_match_tabtype IS TABLE OF othr_chrg_rectype

Line 9: rounding_amt ap_invoice_lines.rounding_amt%TYPE,

5: TYPE othr_chrg_rectype IS RECORD
6: (rcv_txn_id rcv_transactions.transaction_id%TYPE,
7: charge_amt ap_invoice_lines.amount%TYPE,
8: base_amt ap_invoice_lines.base_amount%TYPE,
9: rounding_amt ap_invoice_lines.rounding_amt%TYPE,
10: rcv_qty rcv_transactions.quantity%TYPE);
11:
12: TYPE othr_chrg_match_tabtype IS TABLE OF othr_chrg_rectype
13: INDEX BY BINARY_INTEGER;