DBA Data[Home] [Help]

APPS.OKL_DEAL_CREATE_PUB dependencies on OKL_ACCOUNTING_UTIL

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

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

Line 3027: l_func_curr_code := OKL_ACCOUNTING_UTIL.get_func_curr_code;

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

Line 3109: OKL_ACCOUNTING_UTIL.convert_to_contract_currency (

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

Line 3129: x_converted_amount := OKL_ACCOUNTING_UTIL.cross_currency_round_amount

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