DBA Data[Home] [Help]

APPS.OKC_CLS_UTIL dependencies on FND_API

Line 464: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN

460:
461: END IF;
462:
463: --------------------------------------------
464: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
465: IF ( FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
466: FND_LOG.STRING( FND_LOG.LEVEL_PROCEDURE ,'okc.plsql.OKC_CLS_UTIL.'||l_api_name,'LOAD_CLAUSES_FOR_DOC: Adding sections failed '||
467: 'because of unexpected error.');
468: END IF;

Line 470: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR ;

466: FND_LOG.STRING( FND_LOG.LEVEL_PROCEDURE ,'okc.plsql.OKC_CLS_UTIL.'||l_api_name,'LOAD_CLAUSES_FOR_DOC: Adding sections failed '||
467: 'because of unexpected error.');
468: END IF;
469:
470: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR ;
471: x_return_status := 'E';
472: x_err_msg := 'LOAD_CLAUSES_FOR_DOC: Adding sections failed because of unexpected error.';
473: x_err_msg_code := 'OKC_CLS_SECTIONS_ADD_UNEXP';
474:

Line 475: ELSIF (l_return_status = FND_API.G_RET_STS_ERROR) THEN

471: x_return_status := 'E';
472: x_err_msg := 'LOAD_CLAUSES_FOR_DOC: Adding sections failed because of unexpected error.';
473: x_err_msg_code := 'OKC_CLS_SECTIONS_ADD_UNEXP';
474:
475: ELSIF (l_return_status = FND_API.G_RET_STS_ERROR) THEN
476: IF ( FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
477: FND_LOG.STRING( FND_LOG.LEVEL_PROCEDURE ,'okc.plsql.OKC_CLS_UTIL.'||l_api_name,'LOAD_CLAUSES_FOR_DOC: Adding sections failed. '||
478: 'All the requested operations are not performed.');
479: END IF;

Line 481: --RAISE FND_API.G_EXC_ERROR ;

477: FND_LOG.STRING( FND_LOG.LEVEL_PROCEDURE ,'okc.plsql.OKC_CLS_UTIL.'||l_api_name,'LOAD_CLAUSES_FOR_DOC: Adding sections failed. '||
478: 'All the requested operations are not performed.');
479: END IF;
480:
481: --RAISE FND_API.G_EXC_ERROR ;
482: x_return_status := 'E';
483: x_err_msg := 'LOAD_CLAUSES_FOR_DOC: Adding sections failed. All the requested operations are not performed.';
484: x_err_msg_code := 'OKC_CLS_SECTIONS_ADD_ERR';
485: END IF;