DBA Data[Home] [Help]

APPS.IGF_AW_MANAGE_AWD dependencies on IGS_GE_MSG_STACK

Line 233: igs_ge_msg_stack.conc_exception_hndl;

229: fnd_message.set_token('NAME','IGF_AW_MANAGE_AWD.PROCESS_AWARD :' || SQLERRM);
230: IF fnd_log.level_exception >= fnd_log.g_current_runtime_level THEN
231: fnd_log.string(fnd_log.level_exception,'igf.plsql.igf_aw_manage_awd.process_award.exception','sql error:'||SQLERRM);
232: END IF;
233: igs_ge_msg_stack.conc_exception_hndl;
234: app_exception.raise_exception;
235:
236: END process_award;
237:

Line 431: igs_ge_msg_stack.conc_exception_hndl;

427: fnd_message.set_token('NAME','IGF_AW_MANAGE_AWD.LOCK_UNLOCK_STUD :' || SQLERRM);
428: IF fnd_log.level_exception >= fnd_log.g_current_runtime_level THEN
429: fnd_log.string(fnd_log.level_exception,'igf.plsql.igf_aw_manage_awd.lock_unlock_stud.exception','sql error:'||SQLERRM);
430: END IF;
431: igs_ge_msg_stack.conc_exception_hndl;
432: app_exception.raise_exception;
433:
434: END lock_unlock_stud;
435:

Line 855: igs_ge_msg_stack.add;

851: EXCEPTION
852: WHEN param_exception THEN
853: retcode:=2;
854: fnd_message.set_name('IGF','IGF_AW_PARAM_ERR');
855: igs_ge_msg_stack.add;
856: errbuf := fnd_message.get;
857:
858: WHEN app_exception.record_lock_exception THEN
859: ROLLBACK;

Line 862: igs_ge_msg_stack.add;

858: WHEN app_exception.record_lock_exception THEN
859: ROLLBACK;
860: retcode:=2;
861: fnd_message.set_name('IGF','IGF_GE_LOCK_ERROR');
862: igs_ge_msg_stack.add;
863: errbuf := fnd_message.get;
864:
865: WHEN OTHERS THEN
866: ROLLBACK;

Line 869: igs_ge_msg_stack.add;

865: WHEN OTHERS THEN
866: ROLLBACK;
867: retcode:=2;
868: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXCEPTION');
869: igs_ge_msg_stack.add;
870: errbuf := fnd_message.get || SQLERRM;
871: END run;
872:
873: END igf_aw_manage_awd;