DBA Data[Home] [Help]

APPS.OKL_BCT_PVT dependencies on OKL_UTIL

Line 215: -- check org id validity using the generic function in okl_util

211: BEGIN
212: -- initialize return status
213: x_return_status := OKL_API.G_RET_STS_SUCCESS;
214:
215: -- check org id validity using the generic function in okl_util
216: l_return_status := okl_util.check_org_id (p_org_id,'N');
217:
218: IF ( l_return_status = OKL_API.G_RET_STS_ERROR) THEN
219: OKL_API.SET_MESSAGE(p_app_name => g_app_name,

Line 216: l_return_status := okl_util.check_org_id (p_org_id,'N');

212: -- initialize return status
213: x_return_status := OKL_API.G_RET_STS_SUCCESS;
214:
215: -- check org id validity using the generic function in okl_util
216: l_return_status := okl_util.check_org_id (p_org_id,'N');
217:
218: IF ( l_return_status = OKL_API.G_RET_STS_ERROR) THEN
219: OKL_API.SET_MESSAGE(p_app_name => g_app_name,
220: p_msg_name => g_invalid_value,

Line 545: l_return_status := okl_util.check_lookup_code(

541: RAISE G_EXCEPTION_HALT_VALIDATION;
542:
543: ELSE
544: -- check the status code is a valid value
545: l_return_status := okl_util.check_lookup_code(
546: p_lookup_type => 'OKL_BKG_CONTL_STATUS',
547: p_lookup_code => p_progress_status);
548:
549: IF (l_return_status = OKL_API.G_RET_STS_ERROR) THEN