DBA Data[Home] [Help]

APPS.OKL_VIB_PVT dependencies on OKC_API

Line 237: x_return_status := Okc_Api.G_RET_STS_SUCCESS;

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

Line 254: x_return_status := Okc_Api.G_RET_STS_ERROR;

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

Line 258: Okc_Api.SET_MESSAGE(p_app_name => g_app_name

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

Line 266: x_return_status := Okc_Api.G_RET_STS_UNEXP_ERROR;

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