DBA Data[Home] [Help]

APPS.IGS_UC_QUAL_DETS_IMP_PKG dependencies on IGS_GE_MSG_STACK

Line 324: l_msg_count := igs_ge_msg_stack.count_msg;

320: /* getting the associated person id for inserting in to igs_uc_qual_dets table */
321: FOR J IN cur_person_id (I.subject_id) LOOP
322: BEGIN
323:
324: l_msg_count := igs_ge_msg_stack.count_msg;
325: l_imported := NULL;
326:
327: /* checking whether the same record combination exists */
328: --smaddali 27-jun-2002 added parameter j.ebl_result as this field also is part of te unique key for bug 2430139

Line 536: IF ( l_msg_count <> igs_ge_msg_stack.count_msg) THEN

532: --When the error occurs, log the Error message and continue with processing of next record.
533: l_records_errored := NVL(l_records_errored ,0) + 1 ;
534: l_mesg_data := NULL;
535: l_msg_index := NULL;
536: IF ( l_msg_count <> igs_ge_msg_stack.count_msg) THEN
537: igs_ge_msg_stack.get(igs_ge_msg_stack.count_msg,fnd_api.g_false, l_mesg_data, l_msg_index);
538: IF l_mesg_data IS NOT NULL THEN
539: l_mesg_data := ' - '||l_mesg_data;
540: END IF;

Line 537: igs_ge_msg_stack.get(igs_ge_msg_stack.count_msg,fnd_api.g_false, l_mesg_data, l_msg_index);

533: l_records_errored := NVL(l_records_errored ,0) + 1 ;
534: l_mesg_data := NULL;
535: l_msg_index := NULL;
536: IF ( l_msg_count <> igs_ge_msg_stack.count_msg) THEN
537: igs_ge_msg_stack.get(igs_ge_msg_stack.count_msg,fnd_api.g_false, l_mesg_data, l_msg_index);
538: IF l_mesg_data IS NOT NULL THEN
539: l_mesg_data := ' - '||l_mesg_data;
540: END IF;
541: ELSE

Line 584: igs_ge_msg_stack.conc_exception_hndl;

580: WHEN igs_uc_he_not_enabled_excep THEN
581: fnd_message.set_name('IGS','IGS_UC_HE_NOT_ENABLED');
582: fnd_file.put_line(fnd_file.log, fnd_message.get);
583: retcode := 2;
584: igs_ge_msg_stack.conc_exception_hndl;
585:
586: WHEN OTHERS THEN
587: ROLLBACK;
588: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');

Line 592: igs_ge_msg_stack.conc_exception_hndl;

588: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
589: fnd_message.set_token('NAME', 'IGS_UC_QUAL_DETS_IMP_PKG.IGS_UC_QUAL_DETS_IMP'||' - '||SQLERRM);
590: fnd_message.retrieve (Errbuf);
591: retcode := 2;
592: igs_ge_msg_stack.conc_exception_hndl;
593:
594: END igs_uc_qual_dets_imp;
595:
596: