DBA Data[Home] [Help]

APPS.OKL_VFA_PVT dependencies on OKC_API

Line 235: x_return_status := Okc_Api.G_RET_STS_SUCCESS;

231: item_not_found_error EXCEPTION;
232:
233: BEGIN
234:
235: x_return_status := Okc_Api.G_RET_STS_SUCCESS;
236: IF (p_legal_entity_id = OKL_API.G_MISS_NUM OR
237: p_legal_entity_id IS NULL)
238: THEN
239: OKL_API.set_message(G_APP_NAME, G_REQUIRED_VALUE, G_COL_NAME_TOKEN, 'legal_entity_id');

Line 252: x_return_status := Okc_Api.G_RET_STS_ERROR;

248: END IF;
249:
250: EXCEPTION
251: WHEN item_not_found_error THEN
252: x_return_status := Okc_Api.G_RET_STS_ERROR;
253:
254: WHEN OTHERS THEN
255: -- store SQL error message on message stack for caller
256: Okc_Api.SET_MESSAGE(p_app_name => g_app_name

Line 256: Okc_Api.SET_MESSAGE(p_app_name => g_app_name

252: x_return_status := Okc_Api.G_RET_STS_ERROR;
253:
254: WHEN OTHERS THEN
255: -- store SQL error message on message stack for caller
256: Okc_Api.SET_MESSAGE(p_app_name => g_app_name
257: ,p_msg_name => g_unexpected_error
258: ,p_token1 => g_sqlcode_token
259: ,p_token1_value => SQLCODE
260: ,p_token2 => g_sqlerrm_token

Line 264: x_return_status := Okc_Api.G_RET_STS_UNEXP_ERROR;

260: ,p_token2 => g_sqlerrm_token
261: ,p_token2_value => SQLERRM);
262:
263: -- notify caller of an UNEXPECTED error
264: x_return_status := Okc_Api.G_RET_STS_UNEXP_ERROR;
265:
266: END Validate_LE_Id;
267:
268: ------------------------------------------------------------------------------------------------