DBA Data[Home] [Help]

APPS.PA_BILL_SCHEDULE dependencies on PA_CURRENCY

Line 168: select pa_currency.round_trans_curr_amt(x_computed_markup(i)*p_base_amt(i)/100,

164: x_computed_currency(i) := p_base_curr(i);
165: x_computed_markup(i) := markup;
166: x_computed_rate(i) := null;
167: /*
168: select pa_currency.round_trans_curr_amt(x_computed_markup(i)*p_base_amt(i)/100,
169: x_computed_currency(i))
170: into x_computed_amount(i)
171: from dual;
172: */

Line 173: /* x_computed_amount(i) := pa_currency.round_trans_currency_amt(x_computed_markup(i)*p_base_amt(i)/100,x_computed_currency(i));

169: x_computed_currency(i))
170: into x_computed_amount(i)
171: from dual;
172: */
173: /* x_computed_amount(i) := pa_currency.round_trans_currency_amt(x_computed_markup(i)*p_base_amt(i)/100,x_computed_currency(i));
174: commented for bug 3697180 */
175:
176: /* Added the below for bug 3697180 */
177:

Line 179: pa_currency.round_trans_currency_amt((100 + x_computed_markup(i))*p_base_amt(i)/100,x_computed_currency(i));

175:
176: /* Added the below for bug 3697180 */
177:
178: x_computed_amount(i) :=
179: pa_currency.round_trans_currency_amt((100 + x_computed_markup(i))*p_base_amt(i)/100,x_computed_currency(i));
180: ELSE
181: /* Added for MCB2 : Commented the below select because , now selecting rate currency can be diffrent from PFC */
182: /* select gsb.currency_code
183: into x_computed_currency(i)

Line 190: x_computed_amount(i) := pa_currency.round_trans_currency_amt(p_quantity(i)*bill_rate,x_computed_currency(i));

186: where imp.org_id = bill_ous
187: and imp.set_of_books_id = gsb.set_of_books_id; */
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));