DBA Data[Home] [Help]

APPS.OE_LINE_UTIL dependencies on OE_LINE_ADJ_UTIL

Line 168: OE_Line_Adj_Util.delete_row(p_line_id => p_line_id);

164:
165:
166: END IF;
167:
168: OE_Line_Adj_Util.delete_row(p_line_id => p_line_id);
169: OE_Line_PAttr_Util.delete_row(p_line_id => p_line_id);
170: OE_Line_Scredit_Util.delete_row(p_line_id => p_line_id);
171: OE_Lot_Serial_Util.delete_row(p_line_id => p_line_id);
172: -- Bug 3315531

Line 771: OE_LINE_ADJ_UTIL.Register_Changed_Lines

767: oe_debug_pub.add('setting price flag because of calculate price flag change', 3);
768: end if;
769: IF nvl(OE_GLOBALS.G_PRICE_FLAG, 'N') <> 'Y' THEN
770: OE_GLOBALS.G_PRICE_FLAG := 'Y';
771: OE_LINE_ADJ_UTIL.Register_Changed_Lines
772: (p_line_id => p_x_line_rec.line_id,
773: p_header_id => p_x_line_rec.header_id,
774: p_operation => p_x_line_rec.operation );
775: END IF;

Line 1278: OE_LINE_ADJ_UTIL.Change_adj_for_uom_change(p_x_line_rec);

1274: p_x_line_rec.calculate_price_flag := 'Y';
1275: end if;
1276: --bug 3942402
1277: /* Added the following line to fix the bug 2917690 */
1278: OE_LINE_ADJ_UTIL.Change_adj_for_uom_change(p_x_line_rec);
1279: END IF;
1280: OE_GLOBALS.G_PRICE_FLAG := 'Y';
1281: l_3a7_attribute_change := FND_API.G_TRUE;
1282:

Line 3318: --Oe_Line_Adj_Util.Delete_Row(p_line_id=>p_x_line_rec.line_id); 7363196

3314: if l_debug_level > 0 then
3315: oe_debug_pub.add('User has cleared unit selling price');
3316: oe_debug_pub.add('Just Reprice');
3317: end if;
3318: --Oe_Line_Adj_Util.Delete_Row(p_line_id=>p_x_line_rec.line_id); 7363196
3319: OE_GLOBALS.G_PRICE_FLAG := 'Y';
3320: p_x_line_rec.unit_list_price := NULL;
3321: p_x_line_rec.unit_list_price_per_pqty := NULL;
3322: End if;

Line 4293: OE_LINE_ADJ_UTIL.Process_Pricing(p_x_new_line_rec => p_x_line_rec,

4289: --In the future all pricing related operations will be handled
4290: --by process_pricing. The purpose of this is to reduce file locking
4291: --issue on OEXULINB.pls
4292: -------------------------------------------------------------------
4293: OE_LINE_ADJ_UTIL.Process_Pricing(p_x_new_line_rec => p_x_line_rec,
4294: p_old_line_rec => p_old_line_rec,
4295: p_no_price_flag => l_no_price_flag);
4296:
4297: if l_debug_level > 0 then

Line 4521: IF OE_LINE_ADJ_UTIL.Is_Pricing_Related_Change(p_x_line_rec,p_old_line_rec)

4517: end if; --bug 2855794
4518:
4519: ELSE
4520:
4521: IF OE_LINE_ADJ_UTIL.Is_Pricing_Related_Change(p_x_line_rec,p_old_line_rec)
4522: OR NOT OE_GLOBALS.Equal(p_x_line_rec.shipping_method_code,p_old_line_rec.shipping_method_code) THEN
4523: if l_debug_level > 0 then
4524: oe_debug_pub.add('renga-logging delayed req freight_for_included',1);
4525: end if;

Line 16102: OE_LINE_ADJ_UTIL.Check_Canceled_PRG(p_old_line_rec => p_old_line_rec,

16098:
16099: -- 2921731, storing and resetting the global cancel variable
16100: l_require_reason := OE_SALES_CAN_UTIL.G_REQUIRE_REASON;
16101: --1503357
16102: OE_LINE_ADJ_UTIL.Check_Canceled_PRG(p_old_line_rec => p_old_line_rec,
16103: p_new_line_rec => p_x_line_rec);
16104:
16105: OE_SALES_CAN_UTIL.G_REQUIRE_REASON := l_require_reason;
16106:

Line 22129: oe_line_adj_util.delete_row(p_price_adjustment_id=>iue_adj_id);

22125: oe_debug_pub.ADD('trying to delete IUE adjustments...',1);
22126: OPEN c2;
22127: FETCH c2 INTO iue_adj_id;
22128: IF c2%found THEN
22129: oe_line_adj_util.delete_row(p_price_adjustment_id=>iue_adj_id);
22130: oe_debug_pub.ADD('deleted IUE association:'||SQL%rowcount||' row(s)',1);
22131: oe_debug_pub.ADD('looking for item parent lines...',1);
22132: END IF;
22133: CLOSE c2;

Line 22148: oe_line_adj_util.delete_row(p_line_id=>p_old_line_rec.line_id);

22144:
22145: --delete the adjustment if this is the child line.
22146: IF child_line_id=p_old_line_rec.line_id then
22147: oe_debug_pub.ADD('trying to delete adjustments for line_id:'||p_old_line_rec.line_id,1);
22148: oe_line_adj_util.delete_row(p_line_id=>p_old_line_rec.line_id);
22149: oe_debug_pub.ADD('child adj id '||child_adj_id,1);
22150: OE_Line_Adj_Assocs_Util.delete_row(
22151: p_price_adjustment_id=>child_adj_id);
22152: END IF;