DBA Data[Home] [Help]

APPS.OE_DUAL_UOM_HOOK dependencies on OE_DEBUG_PUB

Line 18: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

14: ) RETURN VARCHAR2
15: IS
16:
17: l_fulfillment_base oe_order_lines_all.fulfillment_base%type;
18: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
19: --
20: BEGIN
21:
22: IF l_debug_level > 0 THEN

Line 23: oe_debug_pub.add('Entering OE_DUAL_UOM_HOOK.get_fulfillment_base ' ||p_line_rec.fulfillment_base);

19: --
20: BEGIN
21:
22: IF l_debug_level > 0 THEN
23: oe_debug_pub.add('Entering OE_DUAL_UOM_HOOK.get_fulfillment_base ' ||p_line_rec.fulfillment_base);
24: END IF;
25:
26: /*
27: THIS HOOK SHOUlD ONLY RETURN VALUE 'P' or 'S'or NULL(to denote hook not in use).

Line 40: oe_debug_pub.add('Exiting as OE_DUAL_UOM_HOOK .get_fulfillment_base not used ' ||p_line_rec.fulfillment_base);

36:
37: /*End Custom Code */
38:
39: IF l_debug_level > 0 THEN
40: oe_debug_pub.add('Exiting as OE_DUAL_UOM_HOOK .get_fulfillment_base not used ' ||p_line_rec.fulfillment_base);
41: END IF;
42: RETURN NULL ;
43:
44: EXCEPTION

Line 47: oe_debug_pub.add('OE_DUAL_UOM_HOOK get_fulfillment_base error ' ||sqlerrm);

43:
44: EXCEPTION
45: WHEN OTHERS THEN
46: IF l_debug_level > 0 THEN
47: oe_debug_pub.add('OE_DUAL_UOM_HOOK get_fulfillment_base error ' ||sqlerrm);
48: END IF ;
49: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_UNEXP_ERROR)
50: THEN
51: oe_msg_pub.Add_Exc_Msg

Line 74: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

70: ) RETURN VARCHAR2
71: IS
72:
73: l_pricing_uom oe_order_lines_all.pricing_quantity_uom%type;
74: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
75: --
76: BEGIN
77:
78: IF l_debug_level > 0 THEN

Line 79: oe_debug_pub.add('Entering oe_dual_uom_pricing_hook.get_pricing_uom ' ||p_line_rec.pricing_quantity_uom);

75: --
76: BEGIN
77:
78: IF l_debug_level > 0 THEN
79: oe_debug_pub.add('Entering oe_dual_uom_pricing_hook.get_pricing_uom ' ||p_line_rec.pricing_quantity_uom);
80: END IF;
81:
82: /*
83:

Line 129: oe_debug_pub.add('Exiting as oe_dual_uom_pricing_hook.get_pricing_uom ' ||p_line_rec.pricing_quantity_uom);

125:
126: /*End Custom Code */
127:
128: IF l_debug_level > 0 THEN
129: oe_debug_pub.add('Exiting as oe_dual_uom_pricing_hook.get_pricing_uom ' ||p_line_rec.pricing_quantity_uom);
130: END IF;
131: RETURN NULL ;
132:
133: EXCEPTION

Line 136: oe_debug_pub.add('oe_dual_uom_pricing_hook get_pricing_uom error ' ||sqlerrm);

132:
133: EXCEPTION
134: WHEN OTHERS THEN
135: IF l_debug_level > 0 THEN
136: oe_debug_pub.add('oe_dual_uom_pricing_hook get_pricing_uom error ' ||sqlerrm);
137: END IF ;
138: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_UNEXP_ERROR)
139: THEN
140: oe_msg_pub.Add_Exc_Msg