DBA Data[Home] [Help]

APPS.PA_BILL_SCHEDULE dependencies on PA_BILL_SCHEDULE

Line 1: PACKAGE BODY pa_bill_schedule AS

1: PACKAGE BODY pa_bill_schedule AS
2: /*$Header: PAXBILAB.pls 120.1 2005/08/19 17:09:08 mwasowic noship $ */
3:
4: g1_debug_mode varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');
5:

Line 46: PA_MCB_INVOICE_PKG.log_message('Entering pa_bill_schedule.get_computed_bill_rate Id :');

42: /*-----------------------------------------------------------------------------
43: loop until all records are processed
44: ----------------------------------------------------------------------------*/
45: IF g1_debug_mode = 'Y' THEN
46: PA_MCB_INVOICE_PKG.log_message('Entering pa_bill_schedule.get_computed_bill_rate Id :');
47: END IF;
48: FOR i in 1..p_array_size LOOP
49:
50: -- CBGA fix

Line 192: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_markup :'||x_computed_markup(i));

188: x_computed_markup(i) := null;
189: x_computed_rate(i) := bill_rate;
190: x_computed_amount(i) := pa_currency.round_trans_currency_amt(p_quantity(i)*bill_rate,x_computed_currency(i));
191: IF g1_debug_mode = 'Y' THEN
192: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_markup :'||x_computed_markup(i));
193: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_rate :'||x_computed_rate(i));
194: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_amount :'||x_computed_amount(i));
195: END IF;
196: END IF;

Line 193: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_rate :'||x_computed_rate(i));

189: x_computed_rate(i) := bill_rate;
190: x_computed_amount(i) := pa_currency.round_trans_currency_amt(p_quantity(i)*bill_rate,x_computed_currency(i));
191: IF g1_debug_mode = 'Y' THEN
192: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_markup :'||x_computed_markup(i));
193: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_rate :'||x_computed_rate(i));
194: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_amount :'||x_computed_amount(i));
195: END IF;
196: END IF;
197: EXCEPTION

Line 194: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_amount :'||x_computed_amount(i));

190: x_computed_amount(i) := pa_currency.round_trans_currency_amt(p_quantity(i)*bill_rate,x_computed_currency(i));
191: IF g1_debug_mode = 'Y' THEN
192: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_markup :'||x_computed_markup(i));
193: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_rate :'||x_computed_rate(i));
194: PA_MCB_INVOICE_PKG.log_message('get_computed_bill_rate: ' || 'Leaving pa_bill_schedule.x_computed_amount :'||x_computed_amount(i));
195: END IF;
196: END IF;
197: EXCEPTION
198: when no_data_found then

Line 207: END pa_bill_schedule;

203: END IF;
204: END LOOP;
205: END get_computed_bill_rate;
206:
207: END pa_bill_schedule;