DBA Data[Home] [Help]

APPS.PA_MULTI_CURRENCY dependencies on PA_CURRENCY

Line 53: l_acct_currency_code := PA_CURRENCY.get_currency_code;

49: l_acct_currency_code VARCHAR2(15);
50:
51: BEGIN
52:
53: l_acct_currency_code := PA_CURRENCY.get_currency_code;
54:
55: RETURN l_acct_currency_code ;
56:
57: END get_acct_currency_code ;

Line 169: P_converted_amount := PA_CURRENCY.round_trans_currency_amt

165: IF (P_Rate IS NULL) THEN
166: RAISE pa_multi_currency.no_rate ;
167: END IF;
168: /* Bug fix for bug 2753298 Ends Here Here */
169: P_converted_amount := PA_CURRENCY.round_trans_currency_amt
170: (P_amount * NVL(P_Rate,1),P_to_currency) ;
171: P_denominator := 1 ;
172: P_numerator := NVL(P_rate,1) ;
173: ELSE

Line 178: ELSE P_converted_amount := PA_CURRENCY.round_trans_currency_amt

174: X_status := 'PA_USR_RATE_NOT_ALLOWED';
175: RETURN ;
176: END IF;
177:
178: ELSE P_converted_amount := PA_CURRENCY.round_trans_currency_amt
179: (P_amount * P_Rate, P_to_currency) ;
180: P_denominator := 1 ;
181: P_numerator := P_rate ;
182: END IF;

Line 405: P_converted_amount := PA_CURRENCY.round_trans_currency_amt

401: P_conversion_date) ;
402:
403:
404: IF ( V_allow_user_rate_type = 'Y') then
405: P_converted_amount := PA_CURRENCY.round_trans_currency_amt
406: (P_amount * NVL(P_Rate,1),P_to_currency) ;
407: P_denominator := 1 ;
408: P_numerator := NVL(P_rate,1) ;
409: ELSE

Line 415: ELSE P_converted_amount := PA_CURRENCY.round_trans_currency_amt

411: pa_cc_utils.reset_curr_function ;
412: RETURN ;
413: END IF;
414:
415: ELSE P_converted_amount := PA_CURRENCY.round_trans_currency_amt
416: (P_amount * P_Rate, P_to_currency) ;
417: P_denominator := 1 ;
418: P_numerator := P_rate ;
419: END IF;

Line 440: P_converted_amount := PA_CURRENCY.round_trans_currency_amt

436: P_rate ) ;
437: IF P_DEBUG_MODE THEN
438: pa_cc_utils.log_message('After Calling GL_CURRENCY_API.convert_closest_amount');
439: END IF;
440: P_converted_amount := PA_CURRENCY.round_trans_currency_amt
441: ( P_converted_amount, P_to_currency);
442: END IF ;
443: IF P_DEBUG_MODE THEN
444: pa_cc_utils.log_message('convert_closest_amount: ' || 'End ');