DBA Data[Home] [Help]

APPS.JAI_CMN_MTAX_PKG dependencies on JAI_CMN_UTILS_PKG

Line 1688: v_curr_conv_rate := jai_cmn_utils_pkg.currency_conversion

1684: * Removed the reference to c_func_curr as the functional
1685: * currency is already derived via caching logic.
1686: */
1687: IF v_func_curr <> shipment_rec.currency_code THEN
1688: v_curr_conv_rate := jai_cmn_utils_pkg.currency_conversion
1689: (v_sob_id, shipment_rec.currency_code, shipment_rec.rate_date,
1690: shipment_rec.rate_type, 1
1691: );
1692: ELSE

Line 2254: v_curr_conv_rate := jai_cmn_utils_pkg.currency_conversion(v_sob_id, releases_rec.currency_code, releases_rec.rate_date, releases_rec.rate_type, 1);

2250: * currency is already derived via caching logic.
2251: */
2252:
2253: IF v_func_curr <> releases_rec.currency_code THEN
2254: v_curr_conv_rate := jai_cmn_utils_pkg.currency_conversion(v_sob_id, releases_rec.currency_code, releases_rec.rate_date, releases_rec.rate_type, 1);
2255: ELSE
2256: v_curr_conv_rate := 1;
2257: END IF;
2258:

Line 2812: v_curr_conv_rate := jai_cmn_utils_pkg.currency_conversion(v_sob_id, v_currency_code, reqn_rec.rate_date, reqn_rec.rate_type, 1);

2808: * currency is already derived via caching logic.
2809: */
2810:
2811: IF v_func_curr <> v_currency_code THEN
2812: v_curr_conv_rate := jai_cmn_utils_pkg.currency_conversion(v_sob_id, v_currency_code, reqn_rec.rate_date, reqn_rec.rate_type, 1);
2813: ELSE
2814: v_curr_conv_rate := 1;
2815: END IF;
2816:

Line 3295: v_converted_rate := jai_cmn_utils_pkg.currency_conversion (v_sob_id , so_rec.currency_code,

3291:
3292: -------Assessable Value Calculation and Taxes recalculation---------------------
3293: v_date_ordered := nvl(so_rec.date_ordered, so_rec.creation_date);
3294:
3295: v_converted_rate := jai_cmn_utils_pkg.currency_conversion (v_sob_id , so_rec.currency_code,
3296: v_date_ordered , so_rec.conversion_type_code, so_rec.conversion_rate);
3297:
3298: IF v_debug THEN
3299: fnd_file.put_line(fnd_file.log, ' v_converted_rate -> '||v_converted_rate);