DBA Data[Home] [Help]

APPS.OKL_AM_ASSET_DISPOSE_PVT dependencies on OKL_ACCOUNTING_UTIL

Line 199: -- OKL_ACCOUNTING_UTIL.convert_to_functional_currency and get back

195:
196: -- rbruno bug 5436987
197: -- Since we do not use the amount or converted amount
198: -- set a hardcoded value for the amount (and pass to to
199: -- OKL_ACCOUNTING_UTIL.convert_to_functional_currency and get back
200: -- conversion values )
201: l_hard_coded_amount NUMBER := 100;
202: --end bug 5436987
203:

Line 271: okl_accounting_util.convert_to_functional_currency(p_khr_id => l_khr_id,

267: --currency conversion variables
268: IF ((p_func_curr_code IS NOT NULL) AND
269: (l_currency_code <> p_func_curr_code))
270: THEN
271: okl_accounting_util.convert_to_functional_currency(p_khr_id => l_khr_id,
272: p_to_currency => p_func_curr_code,
273: p_transaction_date => p_sys_date,
274: p_amount => p_amount,
275: x_return_status => l_return_status,

Line 388: l_validity_date := okl_accounting_util.get_valid_gl_date(p_sys_date);

384: lp_tmpl_identify_rec.product_id := l_pdt_id;
385: lp_tmpl_identify_rec.transaction_type_id := p_try_id;
386: lp_tmpl_identify_rec.memo_yn := 'N';
387: lp_tmpl_identify_rec.prior_year_yn := 'N';
388: l_validity_date := okl_accounting_util.get_valid_gl_date(p_sys_date);
389: --get template info from accounting distributions API
390: okl_account_dist_pub.get_template_info(
391: p_api_version => p_api_version,
392: p_init_msg_list => okl_api.g_false,

Line 1954: -- OKL_ACCOUNTING_UTIL.convert_to_functional_currency and get back

1950:
1951: -- rbruno bug 5436987
1952: -- Since we do not use the amount or converted amount
1953: -- set a hardcoded value for the amount (and pass to to
1954: -- OKL_ACCOUNTING_UTIL.convert_to_functional_currency and get back
1955: -- conversion values )
1956: l_hard_coded_amount NUMBER := 100;
1957: --rbruno bug 5436987 end
1958:

Line 2179: OKL_ACCOUNTING_UTIL.convert_to_functional_currency(

2175: -- currency codes different so need for conversion
2176: IF l_contract_currency_code <> l_functional_currency_code THEN
2177:
2178: -- convert the residual value obtained to functional currency
2179: OKL_ACCOUNTING_UTIL.convert_to_functional_currency(
2180: p_khr_id => l_chr_id,
2181: p_to_currency => l_functional_currency_code,
2182: p_transaction_date => l_quote_eff_date,
2183: p_amount => l_residual_value, -- convert residual value from Contract to Functional currency

Line 2977: OKL_ACCOUNTING_UTIL.convert_to_functional_currency(

2973:
2974: IF l_func_curr_code <> l_contract_currency_code THEN
2975:
2976: -- get currency conversion parameters
2977: OKL_ACCOUNTING_UTIL.convert_to_functional_currency(
2978: p_khr_id => l_chr_id,
2979: p_to_currency => l_func_curr_code,
2980: p_transaction_date => l_quote_eff_date,
2981: p_amount => l_hard_coded_amount,