DBA Data[Home] [Help]

APPS.CS_CHARGE_DETAILS_PVT dependencies on QP_PRICE_LISTS_V

Line 15802: from qp_price_lists_v

15798: --Added to get the currency_code for the price list header id
15799: --Fixed Bug # 3546804
15800: Cursor get_currency_code(p_price_list_id NUMBER) IS
15801: select currency_code
15802: from qp_price_lists_v
15803: where price_list_id = p_price_list_id;
15804:
15805: --Added to get the currency_code for the price list header id
15806: --Fixed Bug # 3546804

Line 15885: FROM qp_price_lists_v

15881: IS
15882:
15883: Cursor c_currency_code(p_price_list_id NUMBER) IS
15884: SELECT currency_code
15885: FROM qp_price_lists_v
15886: WHERE price_list_id = p_price_list_id;
15887:
15888: lv_exists_flag VARCHAR2(1) := 'N';
15889: BEGIN