DBA Data[Home] [Help]

APPS.JAI_CMN_MTAX_PKG dependencies on JAI_CMN_UTILS_PKG

Line 2091: v_curr_conv_rate := jai_cmn_utils_pkg.currency_conversion

2087: * Removed the reference to c_func_curr as the functional
2088: * currency is already derived via caching logic.
2089: */
2090: IF v_func_curr <> shipment_rec.currency_code THEN
2091: v_curr_conv_rate := jai_cmn_utils_pkg.currency_conversion
2092: (v_sob_id, shipment_rec.currency_code, shipment_rec.rate_date,
2093: shipment_rec.rate_type, 1
2094: );
2095: ELSE

Line 2682: 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);

2678: * currency is already derived via caching logic.
2679: */
2680:
2681: IF v_func_curr <> releases_rec.currency_code THEN
2682: 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);
2683: ELSE
2684: v_curr_conv_rate := 1;
2685: END IF;
2686:

Line 3266: 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);

3262: * currency is already derived via caching logic.
3263: */
3264:
3265: IF v_func_curr <> v_currency_code THEN
3266: 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);
3267: ELSE
3268: v_curr_conv_rate := 1;
3269: END IF;
3270:

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

3778:
3779: -------Assessable Value Calculation and Taxes recalculation---------------------
3780: v_date_ordered := nvl(so_rec.date_ordered, so_rec.creation_date);
3781:
3782: v_converted_rate := jai_cmn_utils_pkg.currency_conversion (v_sob_id , so_rec.currency_code,
3783: v_date_ordered , so_rec.conversion_type_code, so_rec.conversion_rate);
3784:
3785: IF v_debug THEN
3786: fnd_file.put_line(fnd_file.log, ' v_converted_rate -> '||v_converted_rate);