DBA Data[Home] [Help]

APPS.CS_CHARGE_DETAILS_PVT dependencies on QP_PRICE_LISTS_V

Line 14265: from qp_price_lists_v

14261: --Added to get the currency_code for the price list header id
14262: --Fixed Bug # 3546804
14263: Cursor get_currency_code(p_price_list_id NUMBER) IS
14264: select currency_code
14265: from qp_price_lists_v
14266: where price_list_id = p_price_list_id;
14267:
14268: --Added to get the currency_code for the price list header id
14269: --Fixed Bug # 3546804

Line 14348: FROM qp_price_lists_v

14344: IS
14345:
14346: Cursor c_currency_code(p_price_list_id NUMBER) IS
14347: SELECT currency_code
14348: FROM qp_price_lists_v
14349: WHERE price_list_id = p_price_list_id;
14350:
14351: lv_exists_flag VARCHAR2(1) := 'N';
14352: BEGIN