DBA Data[Home] [Help]

APPS.IGF_SL_DL_ORIG dependencies on IGS_GE_MSG_STACK

Line 284: IGS_GE_MSG_STACK.ADD;

280: FETCH cur_alternate_code INTO l_alternate_code;
281: IF cur_alternate_code%NOTFOUND THEN
282: CLOSE cur_alternate_code;
283: fnd_message.set_name('IGF','IGF_SL_NO_CALENDAR');
284: IGS_GE_MSG_STACK.ADD;
285: fnd_file.put_line(fnd_file.log,fnd_message.get);
286:
287: app_exception.raise_exception;
288: END IF;

Line 371: igs_ge_msg_stack.add;

367: lv_dbth_id, lv_batch_id, lv_mesg_class, Header_Rec);
368: FETCH Header_Rec into lv_data_header_record;
369: IF Header_Rec%NOTFOUND THEN
370: fnd_message.set_name ('IGF', 'IGF_GE_HDR_CREATE_ERROR');
371: igs_ge_msg_stack.add;
372: app_exception.raise_exception;
373: END IF;
374:
375: -- FA 122 Debug log messages

Line 1099: igs_ge_msg_stack.add;

1095: igf_sl_dl_record.DLTrailer_cur(lv_dl_version, lv_num_of_rec, Trailer_Rec);
1096: FETCH Trailer_Rec into lv_data_record;
1097: IF Header_Rec%NOTFOUND THEN
1098: fnd_message.set_name ('IGF', 'IGF_GE_TRL_CREATE_ERROR');
1099: igs_ge_msg_stack.add;
1100: app_exception.raise_exception;
1101: END IF;
1102: -- Write the Trailer Record into the Output file.
1103: fnd_file.put_line(FND_FILE.OUTPUT, lv_data_record);

Line 1139: igs_ge_msg_stack.conc_exception_hndl;

1135: END IF;
1136:
1137: retcode := 2;
1138: errbuf := fnd_message.get_string('IGF','IGF_GE_LOCK_ERROR');
1139: igs_ge_msg_stack.conc_exception_hndl;
1140:
1141: WHEN OTHERS THEN
1142: ROLLBACK;
1143: IF c_loans%ISOPEN THEN

Line 1149: igs_ge_msg_stack.conc_exception_hndl;

1145: END IF;
1146: retcode := 2;
1147: errbuf := fnd_message.get_string('IGS','IGS_GE_UNHANDLED_EXCEPTION');
1148: fnd_file.put_line(fnd_file.log,SQLERRM);
1149: igs_ge_msg_stack.conc_exception_hndl;
1150: END dl_originate;
1151:
1152:
1153: END igf_sl_dl_orig;