DBA Data[Home] [Help]

APPS.IGF_DB_DL_DISB_ORIG dependencies on IGS_GE_MSG_STACK

Line 230: igs_ge_msg_stack.add;

226: FETCH Header_Rec into lv_data_record;
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.

Line 260: igs_ge_msg_stack.add;

256: igf_sl_dl_record.DLTrailer_cur(lv_dl_version, p_Rec_count,Trailer_Rec);
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);

Line 288: IGS_GE_MSG_STACK.CONC_EXCEPTION_HNDL;

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;
289: WHEN OTHERS THEN
290: ROLLBACK;
291: retcode := 2;
292: errbuf := fnd_message.get_string('IGS','IGS_GE_UNHANDLED_EXCEPTION');

Line 294: IGS_GE_MSG_STACK.CONC_EXCEPTION_HNDL;

290: ROLLBACK;
291: retcode := 2;
292: errbuf := fnd_message.get_string('IGS','IGS_GE_UNHANDLED_EXCEPTION');
293: fnd_file.put_line(fnd_file.log,SQLERRM);
294: IGS_GE_MSG_STACK.CONC_EXCEPTION_HNDL;
295: END disb_originate;
296:
297: PROCEDURE trans_rec( p_dl_version igf_lookups_view.lookup_code%TYPE,
298: p_dl_batch_id igf_sl_dl_batch.batch_id%TYPE,

Line 625: igs_ge_msg_stack.add;

621: END IF;
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;