DBA Data[Home] [Help]

APPS.OE_PRICING_CONT_PVT dependencies on OE_PRICE_BREAK_UTIL

Line 1399: OE_Price_Break_Util.Convert_Miss_To_Null (l_old_Price_Break_rec);

1395:
1396: -- Set missing old record elements to NULL.
1397:
1398: l_old_Price_Break_rec :=
1399: OE_Price_Break_Util.Convert_Miss_To_Null (l_old_Price_Break_rec);
1400:
1401: ELSIF l_Price_Break_rec.operation = OE_GLOBALS.G_OPR_UPDATE
1402: OR l_Price_Break_rec.operation = OE_GLOBALS.G_OPR_DELETE
1403: THEN

Line 1416: l_old_Price_Break_rec := OE_Price_Break_Util.Query_Row

1412: OR l_old_Price_Break_rec.price_break_low = FND_API.G_MISS_NUM
1413: THEN
1414: NULL;
1415: /*
1416: l_old_Price_Break_rec := OE_Price_Break_Util.Query_Row
1417: ( p_discount_line_id => l_Price_Break_rec.discount_line_id
1418: , p_method_type_code => l_Price_Break_rec.method_type_code
1419: , p_price_break_high => l_Price_Break_rec.price_break_high
1420: , p_price_break_low => l_Price_Break_rec.price_break_low

Line 1430: OE_Price_Break_Util.Convert_Miss_To_Null (l_old_Price_Break_rec);

1426: -- Set missing old record elements to NULL.
1427: null;
1428: /*
1429: l_old_Price_Break_rec :=
1430: OE_Price_Break_Util.Convert_Miss_To_Null (l_old_Price_Break_rec);
1431: */
1432:
1433: END IF;
1434:

Line 1437: l_Price_Break_rec := OE_Price_Break_Util.Complete_Record

1433: END IF;
1434:
1435: -- Complete new record from old
1436: /*
1437: l_Price_Break_rec := OE_Price_Break_Util.Complete_Record
1438: ( p_Price_Break_rec => l_Price_Break_rec
1439: , p_old_Price_Break_rec => l_old_Price_Break_rec
1440: );
1441: */

Line 1477: OE_Price_Break_Util.Clear_Dependent_Attr

1473:
1474: /*
1475: l_p_Price_Break_rec := l_Price_Break_rec; --[prarasto]
1476:
1477: OE_Price_Break_Util.Clear_Dependent_Attr
1478: ( p_Price_Break_rec => l_p_Price_Break_rec
1479: , p_old_Price_Break_rec => l_old_Price_Break_rec
1480: , x_Price_Break_rec => l_Price_Break_rec
1481: );

Line 1507: OE_Price_Break_Util.Apply_Attribute_Changes

1503: IF l_control_rec.default_attributes
1504: OR l_control_rec.change_attributes
1505: THEN
1506:
1507: OE_Price_Break_Util.Apply_Attribute_Changes
1508: ( p_Price_Break_rec => l_Price_Break_rec
1509: , p_old_Price_Break_rec => l_old_Price_Break_rec
1510: , x_Price_Break_rec => l_Price_Break_rec
1511: );

Line 1555: /* OE_Price_Break_Util.Delete_Row

1551:
1552: IF l_Price_Break_rec.operation = OE_GLOBALS.G_OPR_DELETE THEN
1553:
1554: NULL;
1555: /* OE_Price_Break_Util.Delete_Row
1556: ( p_discount_line_id => l_Price_Break_rec.discount_line_id
1557: , p_method_type_code => l_Price_Break_rec.method_type_code
1558: , p_price_break_high => l_Price_Break_rec.price_break_high
1559: , p_price_break_low => l_Price_Break_rec.price_break_low

Line 1577: OE_Price_Break_Util.Update_Row (l_Price_Break_rec);

1573: IF l_Price_Break_rec.operation = OE_GLOBALS.G_OPR_UPDATE THEN
1574:
1575: NULL;
1576: /*
1577: OE_Price_Break_Util.Update_Row (l_Price_Break_rec);
1578: */
1579: ELSIF l_Price_Break_rec.operation = OE_GLOBALS.G_OPR_CREATE THEN
1580:
1581: l_Price_Break_rec.creation_date := SYSDATE;

Line 1584: OE_Price_Break_Util.Insert_Row (l_Price_Break_rec);

1580:
1581: l_Price_Break_rec.creation_date := SYSDATE;
1582: l_Price_Break_rec.created_by := FND_GLOBAL.USER_ID;
1583: /*
1584: OE_Price_Break_Util.Insert_Row (l_Price_Break_rec);
1585: */
1586:
1587: END IF;
1588:

Line 2598: OE_Price_Break_Util.Lock_Row

2594: FOR I IN 1..p_Price_Break_tbl.COUNT LOOP
2595:
2596: IF p_Price_Break_tbl(I).operation = OE_GLOBALS.G_OPR_LOCK THEN
2597:
2598: OE_Price_Break_Util.Lock_Row
2599: ( p_Price_Break_rec => p_Price_Break_tbl(I)
2600: , x_Price_Break_rec => l_Price_Break_rec
2601: , x_return_status => l_return_status
2602: );

Line 2825: l_Price_Break_tbl := OE_Price_Break_Util.Query_Rows

2821: FOR I3 IN 1..l_Discount_Line_tbl.COUNT LOOP
2822:
2823: -- Get Price_Break ( parent = Discount_Line )
2824:
2825: l_Price_Break_tbl := OE_Price_Break_Util.Query_Rows
2826: ( p_discount_line_id => l_Discount_Line_tbl(I3).discount_line_id
2827: );
2828:
2829: FOR I4 IN 1..l_Price_Break_tbl.COUNT LOOP