DBA Data[Home] [Help]

APPS.PMI_SALES_PKG dependencies on OE_ORDER_LINES_ALL

Line 199: FUNCTION PMIOM_GET_CHARGE ( p_header_id IN oe_order_lines_all.header_id%TYPE,

195:
196: As per Price Table Mapping.doc, only DIS is considered the equivalent of a charge in Order Fulfillment
197:
198: */
199: FUNCTION PMIOM_GET_CHARGE ( p_header_id IN oe_order_lines_all.header_id%TYPE,
200: p_line_id IN oe_order_lines_all.line_id%TYPE,
201: p_extended_price IN oe_order_lines_all.unit_selling_price%TYPE,
202: p_Billing_Currency IN oe_order_headers_all.transactional_curr_code%TYPE,
203: p_Base_Currency IN gl_sets_of_books.CURRENCY_CODE%TYPE,

Line 200: p_line_id IN oe_order_lines_all.line_id%TYPE,

196: As per Price Table Mapping.doc, only DIS is considered the equivalent of a charge in Order Fulfillment
197:
198: */
199: FUNCTION PMIOM_GET_CHARGE ( p_header_id IN oe_order_lines_all.header_id%TYPE,
200: p_line_id IN oe_order_lines_all.line_id%TYPE,
201: p_extended_price IN oe_order_lines_all.unit_selling_price%TYPE,
202: p_Billing_Currency IN oe_order_headers_all.transactional_curr_code%TYPE,
203: p_Base_Currency IN gl_sets_of_books.CURRENCY_CODE%TYPE,
204: p_exchange_Rate IN oe_order_headers_all.CONVERSION_RATE%TYPE,

Line 201: p_extended_price IN oe_order_lines_all.unit_selling_price%TYPE,

197:
198: */
199: FUNCTION PMIOM_GET_CHARGE ( p_header_id IN oe_order_lines_all.header_id%TYPE,
200: p_line_id IN oe_order_lines_all.line_id%TYPE,
201: p_extended_price IN oe_order_lines_all.unit_selling_price%TYPE,
202: p_Billing_Currency IN oe_order_headers_all.transactional_curr_code%TYPE,
203: p_Base_Currency IN gl_sets_of_books.CURRENCY_CODE%TYPE,
204: p_exchange_Rate IN oe_order_headers_all.CONVERSION_RATE%TYPE,
205: p_ordered_quantity IN oe_order_lines_all.ordered_quantity%TYPE

Line 205: p_ordered_quantity IN oe_order_lines_all.ordered_quantity%TYPE

201: p_extended_price IN oe_order_lines_all.unit_selling_price%TYPE,
202: p_Billing_Currency IN oe_order_headers_all.transactional_curr_code%TYPE,
203: p_Base_Currency IN gl_sets_of_books.CURRENCY_CODE%TYPE,
204: p_exchange_Rate IN oe_order_headers_all.CONVERSION_RATE%TYPE,
205: p_ordered_quantity IN oe_order_lines_all.ordered_quantity%TYPE
206: )
207: RETURN NUMBER;
208:
209: END;