DBA Data[Home] [Help]

APPS.GCS_CONS_MONITOR_PKG dependencies on FND_API

Line 436: x_retcode := fnd_api.g_ret_sts_error;

432: WHEN gcs_cons_eng_invalid_status THEN
433: ROLLBACK TO gcs_lock_results_start;
434: fnd_message.set_name('GCS', 'GCS_CM_INVALID_STATUS');
435: x_errbuf := fnd_message.get;
436: x_retcode := fnd_api.g_ret_sts_error;
437:
438: -- Write the appropriate information to the execution report
439: IF fnd_log.g_current_runtime_level <= fnd_log.level_error THEN
440: fnd_log.STRING(fnd_log.level_error,

Line 448: x_retcode := fnd_api.g_ret_sts_unexp_error;

444: END IF;
445: WHEN OTHERS THEN
446: ROLLBACK TO gcs_lock_results_start;
447: x_errbuf := SQLCODE || SQLERRM;
448: x_retcode := fnd_api.g_ret_sts_unexp_error;
449:
450: -- Write the appropriate information to the execution report
451: IF fnd_log.g_current_runtime_level <= fnd_log.level_error THEN
452: fnd_log.STRING(fnd_log.level_error,

Line 762: x_retcode := fnd_api.g_ret_sts_success;

758: add_entity(l_child_id, p_hierarchy_id, l_date);
759: END LOOP;
760: CLOSE c_child_id;
761:
762: x_retcode := fnd_api.g_ret_sts_success;
763:
764: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,
765: g_pkg_name || '.' || l_api_name || ' EXIT');
766: FND_FILE.NEW_LINE(FND_FILE.OUTPUT);