DBA Data[Home] [Help]

APPS.OKL_DEAL_CREATE_PUB dependencies on OKL_ACCOUNTING_UTIL

Line 2302: lp_chrv_rec.currency_code := OKL_ACCOUNTING_UTIL.get_func_curr_code;

2298: lp_chrv_rec.authoring_org_id := OKL_CONTEXT.GET_OKC_ORG_ID;
2299: lp_chrv_rec.inv_organization_id := OKL_CONTEXT.get_okc_organization_id;
2300:
2301: -- lp_chrv_rec.currency_code := OKC_CURRENCY_API.GET_OU_CURRENCY(OKL_CONTEXT.GET_OKC_ORG_ID);
2302: lp_chrv_rec.currency_code := OKL_ACCOUNTING_UTIL.get_func_curr_code;
2303:
2304: lp_chrv_rec.currency_code_renewed := NULL;
2305: lp_chrv_rec.template_yn := 'N';
2306: lp_chrv_rec.chr_type := 'CYA';

Line 3030: l_func_curr_code := OKL_ACCOUNTING_UTIL.get_func_curr_code;

3026: IF ( x_rgp_id IS NOT NULL) THEN
3027:
3028: l_func_curr_code := NULL;
3029: -- if functional currency code is not equal to contract currency code
3030: l_func_curr_code := OKL_ACCOUNTING_UTIL.get_func_curr_code;
3031:
3032: l_k_curr_code := NULL;
3033: l_start_date := NULL;
3034:

Line 3112: OKL_ACCOUNTING_UTIL.convert_to_contract_currency (

3108: END IF;
3109:
3110: IF (l_rule_amt IS NOT NULL) THEN
3111: -- do currency conversion for DFF amount columns
3112: OKL_ACCOUNTING_UTIL.convert_to_contract_currency (
3113: p_khr_id => l_chr_id,
3114: p_from_currency => l_func_curr_code,
3115: p_transaction_date => l_start_date,
3116: p_amount => l_rule_amt,

Line 3132: x_converted_amount := OKL_ACCOUNTING_UTIL.cross_currency_round_amount

3128: END IF;
3129:
3130: IF(l_rule_id IS NOT NULL AND x_converted_amount IS NOT NULL) THEN
3131:
3132: x_converted_amount := OKL_ACCOUNTING_UTIL.cross_currency_round_amount
3133: (
3134: p_amount => x_converted_amount,
3135: p_currency_code => l_k_curr_code
3136: );