DBA Data[Home] [Help]

APPS.GCS_CREATE_LEVELS_PKG dependencies on FND_MESSAGE

Line 281: errbuf := FND_MESSAGE.get;

277: EXCEPTION
278: WHEN SUBMISSION_FAILED THEN
279: --An error msg is placed on the stack at the exception raise point
280: --A logString call is made at the exception raise point
281: errbuf := FND_MESSAGE.get;
282: retcode := '0';
283: IF (unexpectedloglevel >= runtimeloglevel ) THEN
284: FND_LOG.STRING(unexpectedloglevel, 'gcs.plsql.GCS_EPB_CREATE_LEVELS_PKG.GCS_EPB_CREATE_LEVEL', 'SUBMISSION_FAILED');
285: END IF;

Line 290: errbuf := FND_MESSAGE.get;

286: RAISE;
287: WHEN REQUEST_ERROR THEN
288: --An error msg is placed on the stack at the exception raise point
289: --A logString call is made at the exception raise point
290: errbuf := FND_MESSAGE.get;
291: retcode := '0';
292: IF (unexpectedloglevel >= runtimeloglevel ) THEN
293: FND_LOG.STRING(unexpectedloglevel, 'gcs.plsql.GCS_EPB_CREATE_LEVELS_PKG.GCS_EPB_CREATE_LEVEL', 'REQUEST_ERROR');
294: END IF;