DBA Data[Home] [Help]

APPS.OKL_RFC_PVT dependencies on OKL_UTIL

Line 149: -- check from currency values using the generic okl_util.validate_currency_code

145:
146: -- halt further validation of this column
147: RAISE G_EXCEPTION_HALT_VALIDATION;
148: END IF;
149: -- check from currency values using the generic okl_util.validate_currency_code
150: l_return_status := OKL_ACCOUNTING_UTIL.validate_currency_code(p_rfcv_rec.currency_code);
151: IF (l_return_status <> OKC_API.G_TRUE) THEN
152: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
153: p_msg_name => g_invalid_value,

Line 200: -- check from currency values using the generic okl_util.validate_currency_code

196: ,p_token1_value => 'currency_conversion_code');
197: -- halt further validation of this column
198: RAISE G_EXCEPTION_HALT_VALIDATION;
199: END IF;
200: -- check from currency values using the generic okl_util.validate_currency_code
201: l_return_status := OKL_ACCOUNTING_UTIL.validate_currency_code(p_rfcv_rec.currency_conversion_code);
202: IF (l_return_status <> OKC_API.G_TRUE) THEN
203: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
204: p_msg_name => g_invalid_value,

Line 244: -- check from currency values using the generic okl_util.validate_currency_code

240: -- initialize return status
241: x_return_status := OKC_API.G_RET_STS_SUCCESS;
242: IF (p_rfcv_rec.currency_conversion_type <> OKL_API.G_MISS_CHAR AND
243: p_rfcv_rec.currency_conversion_type IS NOT NULL) THEN
244: -- check from currency values using the generic okl_util.validate_currency_code
245: l_return_status := OKL_ACCOUNTING_UTIL.validate_currency_con_type(p_rfcv_rec.currency_conversion_type);
246: IF (l_return_status <> OKC_API.G_TRUE) THEN
247: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
248: p_msg_name => g_invalid_value,

Line 458: l_return_status := OKL_UTIL.check_lookup_code(

454: -- halt further validation of this column
455: RAISE G_EXCEPTION_HALT_VALIDATION;
456: END IF;
457:
458: l_return_status := OKL_UTIL.check_lookup_code(
459: p_lookup_type => 'OKL_COST_TYPE',
460: p_lookup_code => p_rfcv_rec.cos_code);
461:
462: IF (l_return_status = OKC_API.G_RET_STS_ERROR) THEN

Line 515: -- check org id validity using the generic function okl_util.check_org_id()

511: BEGIN
512: -- initialize return status
513: x_return_status := OKC_API.G_RET_STS_SUCCESS;
514:
515: -- check org id validity using the generic function okl_util.check_org_id()
516: l_return_status := OKL_UTIL.check_org_id (p_rfcv_rec.org_id);
517:
518: IF ( l_return_status = OKC_API.G_RET_STS_ERROR) THEN
519: OKC_API.SET_MESSAGE(p_app_name => g_app_name,

Line 516: l_return_status := OKL_UTIL.check_org_id (p_rfcv_rec.org_id);

512: -- initialize return status
513: x_return_status := OKC_API.G_RET_STS_SUCCESS;
514:
515: -- check org id validity using the generic function okl_util.check_org_id()
516: l_return_status := OKL_UTIL.check_org_id (p_rfcv_rec.org_id);
517:
518: IF ( l_return_status = OKC_API.G_RET_STS_ERROR) THEN
519: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
520: p_msg_name => g_invalid_value,