DBA Data[Home] [Help]

APPS.OKL_RAS_PVT dependencies on OKL_UTIL

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

136:
137: -- halt further validation of this column
138: RAISE G_EXCEPTION_HALT_VALIDATION;
139: END IF;
140: -- check from currency values using the generic okl_util.validate_currency_code
141: l_return_status := OKL_ACCOUNTING_UTIL.validate_currency_code(p_rasv_rec.currency_code);
142: IF (l_return_status <> OKC_API.G_TRUE) THEN
143: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
144: p_msg_name => g_invalid_value,

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

187: ,p_token1_value => 'currency_conversion_code');
188: -- halt further validation of this column
189: RAISE G_EXCEPTION_HALT_VALIDATION;
190: END IF;
191: -- check from currency values using the generic okl_util.validate_currency_code
192: l_return_status := OKL_ACCOUNTING_UTIL.validate_currency_code(p_rasv_rec.currency_conversion_code);
193: IF (l_return_status <> OKC_API.G_TRUE) THEN
194: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
195: p_msg_name => g_invalid_value,

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

231: -- initialize return status
232: x_return_status := OKC_API.G_RET_STS_SUCCESS;
233: IF (p_rasv_rec.currency_conversion_type <> OKL_API.G_MISS_CHAR AND
234: p_rasv_rec.currency_conversion_type IS NOT NULL) THEN
235: -- check from currency values using the generic okl_util.validate_currency_code
236: l_return_status := OKL_ACCOUNTING_UTIL.validate_currency_con_type(p_rasv_rec.currency_conversion_type);
237: IF (l_return_status <> OKC_API.G_TRUE) THEN
238: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
239: p_msg_name => g_invalid_value,

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

416: BEGIN
417: -- initialize return status
418: x_return_status := OKC_API.G_RET_STS_SUCCESS;
419:
420: -- check org id validity using the generic function okl_util.check_org_id()
421: l_return_status := OKL_UTIL.check_org_id (p_rasv_rec.org_id);
422:
423: IF ( l_return_status = OKC_API.G_RET_STS_ERROR) THEN
424: OKC_API.SET_MESSAGE(p_app_name => g_app_name,

Line 421: l_return_status := OKL_UTIL.check_org_id (p_rasv_rec.org_id);

417: -- initialize return status
418: x_return_status := OKC_API.G_RET_STS_SUCCESS;
419:
420: -- check org id validity using the generic function okl_util.check_org_id()
421: l_return_status := OKL_UTIL.check_org_id (p_rasv_rec.org_id);
422:
423: IF ( l_return_status = OKC_API.G_RET_STS_ERROR) THEN
424: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
425: p_msg_name => g_invalid_value,

Line 721: -- check from domain values using the generic okl_util.check_domain_yn

717: BEGIN
718: -- intialize return status
719: x_return_status := OKC_API.G_RET_STS_SUCCESS;
720:
721: -- check from domain values using the generic okl_util.check_domain_yn
722: l_return_status := OKL_UTIL.check_domain_yn(p_rasv_rec.trans_option_accepted_yn);
723:
724:
725: IF (l_return_status = OKC_API.G_RET_STS_ERROR) THEN

Line 722: l_return_status := OKL_UTIL.check_domain_yn(p_rasv_rec.trans_option_accepted_yn);

718: -- intialize return status
719: x_return_status := OKC_API.G_RET_STS_SUCCESS;
720:
721: -- check from domain values using the generic okl_util.check_domain_yn
722: l_return_status := OKL_UTIL.check_domain_yn(p_rasv_rec.trans_option_accepted_yn);
723:
724:
725: IF (l_return_status = OKC_API.G_RET_STS_ERROR) THEN
726: OKC_API.SET_MESSAGE(p_app_name => g_app_name,