DBA Data[Home] [Help]

APPS.OE_OE_TOTALS_SUMMARY dependencies on OE_HEADER_ADJ_UTIL

Line 21: adjustment_total:=oe_header_adj_util.get_adj_total(p_header_id);

17: --
18: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
19: --
20: BEGIN
21: adjustment_total:=oe_header_adj_util.get_adj_total(p_header_id);
22: RETURN(adjustment_total);
23:
24: END PRICE_ADJUSTMENTS;
25:

Line 119: adjustment_line_total:=oe_header_adj_util.get_adj_total(p_line_id => x_line_id);

115: --
116: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
117: --
118: BEGIN
119: adjustment_line_total:=oe_header_adj_util.get_adj_total(p_line_id => x_line_id);
120: RETURN(adjustment_line_total);
121:
122: END LINE_PRICE_ADJUSTMENTS;
123:

Line 1103: adjustment_total:=oe_header_adj_util.get_rec_adj_total(p_header_id,p_line_id,p_charge_periodicity_code);

1099: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
1100: p_line_id NUMBER;
1101: --
1102: BEGIN
1103: adjustment_total:=oe_header_adj_util.get_rec_adj_total(p_header_id,p_line_id,p_charge_periodicity_code);
1104: RETURN(adjustment_total);
1105:
1106: END REC_PRICE_ADJUSTMENTS;
1107:

Line 1539: G_RECURRING_AMOUNTS_TBL(i).recurring_amount := OE_HEADER_ADJ_UTIL.Get_Rec_Order_Adj_Total(l_header_id, p_price_adjustment_id, l_code);

1535: FETCH c_charge_periodicity INTO l_code;
1536: EXIT WHEN c_charge_periodicity%NOTFOUND;
1537: G_RECURRING_AMOUNTS_TBL(i).charge_periodicity_code := l_code;
1538: G_RECURRING_AMOUNTS_TBL(i).charge_periodicity_meaning := OE_ID_TO_VALUE.Charge_Periodicity(l_code);
1539: G_RECURRING_AMOUNTS_TBL(i).recurring_amount := OE_HEADER_ADJ_UTIL.Get_Rec_Order_Adj_Total(l_header_id, p_price_adjustment_id, l_code);
1540:
1541: IF l_debug_level > 0 THEN
1542: oe_debug_pub.add('***************************************************************');
1543: oe_debug_pub.add('charge_periodicity_code : ' || G_RECURRING_AMOUNTS_TBL(i).charge_periodicity_code);