DBA Data[Home] [Help]

APPS.OE_DEFAULT_LINE_ADJ dependencies on OE_DEBUG_PUB

Line 44: oe_debug_pub.add('Enter OE_Default_Line_Adj.attributes');

40: l_operation VARCHAR2(30);
41: l_Modifiers_Rec OE_Order_Cache.Modifiers_Rec_Type;
42:
43: BEGIN
44: oe_debug_pub.add('Enter OE_Default_Line_Adj.attributes');
45:
46: IF p_x_line_adj_rec.operation = OE_GLOBALS.G_OPR_CREATE AND
47: p_x_line_adj_rec.list_line_type_code = 'FREIGHT_CHARGE'
48: THEN

Line 85: oe_debug_pub.add('aksingh ==> creating adj_id ');

81:
82: IF l_operation = OE_GLOBALS.G_OPR_CREATE THEN
83: -- 3709642
84: IF nvl(g_Line_Adj_rec.price_adjustment_id,FND_API.G_MISS_NUM) = FND_API.G_MISS_NUM THEN
85: oe_debug_pub.add('aksingh ==> creating adj_id ');
86: g_Line_Adj_rec.price_adjustment_id := Get_Price_Adjustment;
87: p_x_Line_Adj_rec.orig_sys_discount_ref := 'OE_PRICE_ADJUSTMENTS'||g_Line_Adj_rec.price_adjustment_id;
88: END IF;
89:

Line 94: oe_debug_pub.add('aksingh ==> adding the default for adjustments');

90: END IF;
91: If g_Line_Adj_rec.list_line_id <> FND_API.G_MISS_NUM and
92: g_Line_Adj_rec.list_line_id is not null and
93: (OE_Globals.G_PRICING_RECURSION <> 'Y') Then
94: oe_debug_pub.add('aksingh ==> adding the default for adjustments');
95:
96: l_Modifiers_Rec:= OE_Order_Cache.Load_List_Lines(g_Line_Adj_rec.list_line_id);
97:
98: IF g_Line_Adj_rec.AUTOMATIC_FLAG = FND_API.G_MISS_CHAR or

Line 218: oe_debug_pub.add('call convert_miss_to_null');

214: -- Code added for bug 2155582
215:
216: p_x_line_adj_rec := g_line_adj_rec;
217:
218: oe_debug_pub.add('call convert_miss_to_null');
219: OE_LINE_ADJ_UTIL.Convert_Miss_To_Null( p_x_line_adj_rec );
220:
221: -- end bug 2155582
222:

Line 229: oe_debug_pub.add('dis sys = '||p_x_Line_Adj_rec.orig_sys_discount_ref);

225: IF p_x_Line_Adj_rec.modifier_mechanism_type_code = FND_API.G_MISS_CHAR THEN
226: p_x_Line_Adj_rec.modifier_mechanism_type_code := NULL;
227: END IF;
228:
229: oe_debug_pub.add('dis sys = '||p_x_Line_Adj_rec.orig_sys_discount_ref);
230: IF p_x_Line_Adj_rec.orig_sys_discount_ref = FND_API.G_MISS_CHAR THEN
231: p_x_Line_Adj_rec.orig_sys_discount_ref := 'OE_PRICE_ADJUSTMENTS'||p_x_Line_Adj_rec.price_adjustment_id;
232: END IF;
233:

Line 250: oe_debug_pub.add('Exit OE_Default_Line_Adj.attributes');

246:
247:
248: /* 1581620 end */
249:
250: oe_debug_pub.add('Exit OE_Default_Line_Adj.attributes');
251:
252: End Attributes;
253:
254: END OE_Default_Line_Adj ;