DBA Data[Home] [Help]

APPS.OE_DEFAULT_HEADER_ADJ dependencies on OE_DEBUG_PUB

Line 43: oe_debug_pub.add('Enter OE_Default_Header_Adj.Attributes');

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

Line 186: oe_debug_pub.add('Added Accrual Flag defaulting to the list of defaulted values.');

182:
183: -- Start Bug# 10330632
184: IF g_header_Adj_rec.Accrual_flag = FND_API.G_MISS_CHAR or
185: g_header_Adj_rec.Accrual_flag is null THEN
186: oe_debug_pub.add('Added Accrual Flag defaulting to the list of defaulted values.');
187: g_header_Adj_rec.Accrual_flag := l_Modifiers_Rec.Accrual_flag;
188: End If;
189: -- End Bug# 10330632
190:

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

208: -- Code added for bug 2155582
209:
210: p_x_header_adj_rec := g_header_adj_rec;
211:
212: oe_debug_pub.add('call convert_miss_to_null');
213: OE_HEADER_ADJ_UTIL.Convert_Miss_To_Null( p_x_header_adj_rec );
214:
215: -- end bug 2155582
216:

Line 224: oe_debug_pub.add('discount ref = '||p_x_header_Adj_rec.price_adjustment_id);

220: p_x_header_Adj_rec.modifier_mechanism_type_code := NULL;
221: END IF;
222:
223: IF p_x_header_Adj_rec.orig_sys_discount_ref = FND_API.G_MISS_CHAR THEN
224: oe_debug_pub.add('discount ref = '||p_x_header_Adj_rec.price_adjustment_id);
225: p_x_header_Adj_rec.orig_sys_discount_ref := 'OE_PRICE_ADJUSTMENTS'||p_x_header_Adj_rec.price_adjustment_id;
226: END IF;
227:
228: IF p_x_header_Adj_rec.invoiced_flag = FND_API.G_MISS_CHAR THEN

Line 238: oe_debug_pub.add('Exit OE_Default_Header_Adj.Attributes');

234: END IF;
235:
236: /* 1581620 end */
237:
238: oe_debug_pub.add('Exit OE_Default_Header_Adj.Attributes');
239:
240: END Attributes;
241:
242: END OE_Default_Header_Adj;