DBA Data[Home] [Help]

APPS.OKL_QAB_PVT dependencies on OKL_UTIL

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

933:
934: -- halt further validation of this column
935: RAISE G_EXCEPTION_HALT_VALIDATION;
936: END IF;
937: -- check from currency values using the generic okl_util.validate_currency_code
938: l_return_status := OKL_ACCOUNTING_UTIL.validate_currency_code(p_qabv_rec.currency_code);
939: IF (l_return_status <> OKC_API.G_TRUE) THEN
940: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
941: p_msg_name => g_invalid_value,

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

984: ,p_token1_value => 'currency_conversion_code');
985: -- halt further validation of this column
986: RAISE G_EXCEPTION_HALT_VALIDATION;
987: END IF;
988: -- check from currency values using the generic okl_util.validate_currency_code
989: l_return_status := OKL_ACCOUNTING_UTIL.validate_currency_code(p_qabv_rec.currency_conversion_code);
990: IF (l_return_status <> OKC_API.G_TRUE) THEN
991: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
992: p_msg_name => g_invalid_value,

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

1028: -- initialize return status
1029: x_return_status := OKC_API.G_RET_STS_SUCCESS;
1030: IF (p_qabv_rec.currency_conversion_type <> OKL_API.G_MISS_CHAR AND
1031: p_qabv_rec.currency_conversion_type IS NOT NULL) THEN
1032: -- check from currency values using the generic okl_util.validate_currency_code
1033: l_return_status := OKL_ACCOUNTING_UTIL.validate_currency_con_type(p_qabv_rec.currency_conversion_type);
1034: IF (l_return_status <> OKC_API.G_TRUE) THEN
1035: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
1036: p_msg_name => g_invalid_value,

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

1071: BEGIN
1072: -- initialize return status
1073: x_return_status := OKC_API.G_RET_STS_SUCCESS;
1074:
1075: -- check org id validity using the generic function okl_util.check_org_id()
1076: l_return_status := OKL_UTIL.check_org_id (p_org_id);
1077:
1078: IF ( l_return_status = OKC_API.G_RET_STS_ERROR) THEN
1079: OKC_API.SET_MESSAGE(p_app_name => g_app_name,

Line 1076: l_return_status := OKL_UTIL.check_org_id (p_org_id);

1072: -- initialize return status
1073: x_return_status := OKC_API.G_RET_STS_SUCCESS;
1074:
1075: -- check org id validity using the generic function okl_util.check_org_id()
1076: l_return_status := OKL_UTIL.check_org_id (p_org_id);
1077:
1078: IF ( l_return_status = OKC_API.G_RET_STS_ERROR) THEN
1079: OKC_API.SET_MESSAGE(p_app_name => g_app_name,
1080: p_msg_name => g_invalid_value,