DBA Data[Home] [Help]

APPS.AR_VIEW_TERM_GRP dependencies on ARPCURR

Line 151: l_pay_now_line_amt_rnd := arpcurr.CurrRound(l_pay_now_line_amount, p_currency_code);

147:
148: l_pay_now_line_amount := p_line_amount * l_pay_now_percent;
149:
150: BEGIN
151: l_pay_now_line_amt_rnd := arpcurr.CurrRound(l_pay_now_line_amount, p_currency_code);
152: EXCEPTION
153: WHEN NO_DATA_FOUND THEN
154: FND_MESSAGE.set_name('AR','AR_CC_INVALID_CURRENCY');
155: FND_MSG_PUB.Add;

Line 162: l_pay_now_tax_amt_rnd := arpcurr.CurrRound(l_pay_now_tax_amount, p_currency_code);

158:
159: x_pay_now_line_amount := l_pay_now_line_amt_rnd;
160: IF pay_now_cache(p_term_id).first_installment_code = 'ALLOCATE' THEN
161: l_pay_now_tax_amount := p_tax_amount * l_pay_now_percent;
162: l_pay_now_tax_amt_rnd := arpcurr.CurrRound(l_pay_now_tax_amount, p_currency_code);
163: l_pay_now_freight_amount := p_freight_amount * l_pay_now_percent;
164: l_pay_now_freight_amt_rnd := arpcurr.CurrRound(l_pay_now_freight_amount, p_currency_code);
165: ELSE
166: l_pay_now_tax_amt_rnd := p_tax_amount * pay_now_cache(p_term_id).first_installment_count;

Line 164: l_pay_now_freight_amt_rnd := arpcurr.CurrRound(l_pay_now_freight_amount, p_currency_code);

160: IF pay_now_cache(p_term_id).first_installment_code = 'ALLOCATE' THEN
161: l_pay_now_tax_amount := p_tax_amount * l_pay_now_percent;
162: l_pay_now_tax_amt_rnd := arpcurr.CurrRound(l_pay_now_tax_amount, p_currency_code);
163: l_pay_now_freight_amount := p_freight_amount * l_pay_now_percent;
164: l_pay_now_freight_amt_rnd := arpcurr.CurrRound(l_pay_now_freight_amount, p_currency_code);
165: ELSE
166: l_pay_now_tax_amt_rnd := p_tax_amount * pay_now_cache(p_term_id).first_installment_count;
167: l_pay_now_freight_amt_rnd := p_freight_amount * pay_now_cache(p_term_id).first_installment_count;
168: END IF;