DBA Data[Home] [Help]

APPS.OKL_TRQ_PVT dependencies on OKL_ACCOUNTING_UTIL

Line 1205: l_valid := OKL_ACCOUNTING_UTIL.validate_currency_code(p_trqv_rec.currency_code);

1201: x_return_status := OKL_API.G_RET_STS_SUCCESS;
1202: IF (p_trqv_rec.currency_code <> OKL_API.G_MISS_CHAR AND
1203: p_trqv_rec.currency_code IS NOT NULL) THEN
1204: -- check from currency values using the generic okl_util.validate_currency_code
1205: l_valid := OKL_ACCOUNTING_UTIL.validate_currency_code(p_trqv_rec.currency_code);
1206: IF l_valid <> OKL_API.G_TRUE THEN
1207: l_return_status := OKL_API.G_RET_STS_ERROR;
1208: END IF;
1209:

Line 1247: l_valid := OKL_ACCOUNTING_UTIL.validate_currency_con_type(p_trqv_rec.currency_conversion_type);

1243: x_return_status := OKL_API.G_RET_STS_SUCCESS;
1244: IF (p_trqv_rec.currency_conversion_type <> OKL_API.G_MISS_CHAR AND
1245: p_trqv_rec.currency_conversion_type IS NOT NULL) THEN
1246: -- check from currency values using the generic okl_util.validate_currency_con_type
1247: l_valid := OKL_ACCOUNTING_UTIL.validate_currency_con_type(p_trqv_rec.currency_conversion_type);
1248: IF l_valid <> OKL_API.G_TRUE THEN
1249: l_return_status := OKL_API.G_RET_STS_ERROR;
1250: END IF;
1251: END IF;