DBA Data[Home] [Help]

APPS.QP_DEFAULT_FORMULA dependencies on OE_DEBUG_PUB

Line 56: oe_debug_pub.add('Entering proc Get_Price_Formula in Formula Defaults Pkg');

52: IS
53: l_price_formula_id NUMBER := NULL;
54: BEGIN
55:
56: oe_debug_pub.add('Entering proc Get_Price_Formula in Formula Defaults Pkg');
57: SELECT QP_PRICE_FORMULAS_B_S.nextval
58: INTO l_price_formula_id
59: FROM dual;
60:

Line 61: oe_debug_pub.add('Leaving proc Get_Price_Formula in Formula Defaults Pkg');

57: SELECT QP_PRICE_FORMULAS_B_S.nextval
58: INTO l_price_formula_id
59: FROM dual;
60:
61: oe_debug_pub.add('Leaving proc Get_Price_Formula in Formula Defaults Pkg');
62: RETURN l_price_formula_id;
63:
64: END Get_Price_Formula;
65: