DBA Data[Home] [Help]

APPS.IGF_DB_DL_DISB_ORIG dependencies on APP_EXCEPTION

Line 231: app_exception.raise_exception;

227:
228: IF Header_Rec%NOTFOUND THEN
229: fnd_message.set_name ('IGF', 'IGF_GE_HDR_CREATE_ERROR');
230: igs_ge_msg_stack.add;
231: app_exception.raise_exception;
232: END IF;
233:
234: -- Write the Header Record into the Output file.
235: -- fnd_file.put_line(FND_FILE.OUTPUT, lv_data_record);

Line 261: app_exception.raise_exception;

257: FETCH Trailer_Rec into lv_data_record;
258: IF Trailer_Rec%NOTFOUND THEN
259: fnd_message.set_name ('IGF', 'IGF_GE_TRL_CREATE_ERROR');
260: igs_ge_msg_stack.add;
261: app_exception.raise_exception;
262: END IF;
263: -- Write the Trailer Record into the Output file
264: fnd_file.put_line(FND_FILE.OUTPUT, lv_data_record);
265:

Line 284: WHEN app_exception.record_lock_exception THEN

280: WHEN no_disb_data THEN
281: ROLLBACK;
282: retcode := 0;
283: errbuf := NULL;
284: WHEN app_exception.record_lock_exception THEN
285: ROLLBACK;
286: retcode := 2;
287: errbuf := fnd_message.get_string('IGF','IGF_GE_LOCK_ERROR');
288: IGS_GE_MSG_STACK.CONC_EXCEPTION_HNDL;

Line 606: WHEN app_exception.record_lock_exception THEN

602:
603: EXCEPTION
604: WHEN NO_DATA_FOUND THEN
605: NULL;
606: WHEN app_exception.record_lock_exception THEN
607: IF cur_disb_dtl%ISOPEN THEN
608: CLOSE cur_disb_dtl;
609: END IF;
610: IF cur_school%ISOPEN THEN

Line 626: app_exception.raise_exception;

622: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
623: fnd_message.set_token('NAME','IGF_DB_DL_DISB_ORIG.TRANS_REC');
624: fnd_file.put_line(fnd_file.log,SQLERRM);
625: igs_ge_msg_stack.add;
626: app_exception.raise_exception;
627: END trans_rec;
628: END igf_db_dl_disb_orig;