DBA Data[Home] [Help]

APPS.IGF_SL_DL_CHG_ORIG dependencies on IGS_GE_MSG_STACK

Line 338: igs_ge_msg_stack.add;

334: fnd_message.set_name('IGF','IGF_SL_NO_CHG_CODE');
335: fnd_message.set_token('FLD_NAME', igf_aw_gen.lookup_desc('IGF_SL_LOAN_FIELDS', p_field_name));
336: fnd_message.set_token('LOAN_CATG', igf_aw_gen.lookup_desc('IGF_SL_DL_LOAN_CATG',p_dl_loan_catg));
337: fnd_message.set_token('DL_VERSION',igf_aw_gen.lookup_desc('IGF_SL_DL_VERSION', lv_dl_version ));
338: igs_ge_msg_stack.add;
339: app_exception.raise_exception;
340: END IF;
341:
342: -- Directly setting to Send, as the Trans_rec() procedure picks up only the

Line 368: igs_ge_msg_stack.add;

364: END IF;
365: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
366: fnd_message.set_token('NAME','IGF_SL_DL_CHG_ORIG.COMP_LOR_LOC');
367: fnd_file.put_line(fnd_file.log,SQLERRM);
368: igs_ge_msg_stack.add;
369: app_exception.raise_exception;
370: END comp_lor_loc;
371:
372: -- main

Line 387: IGS_GE_MSG_STACK.ADD;

383: FETCH cur_alternate_code INTO l_alternate_code;
384: IF cur_alternate_code%NOTFOUND THEN
385: CLOSE cur_alternate_code;
386: fnd_message.set_name('IGF','IGF_SL_NO_CALENDAR');
387: IGS_GE_MSG_STACK.ADD;
388: fnd_file.put_line(fnd_file.log,fnd_message.get);
389:
390: app_exception.raise_exception;
391: END IF;

Line 456: igs_ge_msg_stack.add;

452: FETCH Header_Rec into lv_data_record;
453:
454: IF Header_Rec%NOTFOUND THEN
455: fnd_message.set_name ('IGF', 'IGF_GE_HDR_CREATE_ERROR');
456: igs_ge_msg_stack.add;
457: app_exception.raise_exception;
458: END IF;
459:
460: -- FA 122 Loan Enhancements derive the paramters to be passed to the c_lor cursor

Line 1042: igs_ge_msg_stack.add;

1038: igf_sl_dl_record.DLTrailer_cur(lv_dl_version, p_tot_rec_count, Trailer_Rec);
1039: FETCH Trailer_Rec into lv_data_record;
1040: IF Trailer_Rec%NOTFOUND THEN
1041: fnd_message.set_name ('IGF', 'IGF_GE_TRL_CREATE_ERROR');
1042: igs_ge_msg_stack.add;
1043: app_exception.raise_exception;
1044: END IF;
1045:
1046: -- Write the Trailer Record into the Output file.

Line 1091: igs_ge_msg_stack.conc_exception_hndl;

1087: END IF;
1088: retcode := 2;
1089: errbuf := fnd_message.get_string('IGS','IGS_GE_UNHANDLED_EXCEPTION');
1090: fnd_file.put_line(fnd_file.log,SQLERRM);
1091: igs_ge_msg_stack.conc_exception_hndl;
1092: END chg_originate;
1093:
1094:
1095:

Line 1203: igs_ge_msg_stack.add;

1199: END IF;
1200: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
1201: fnd_message.set_token('NAME','IGF_SL_DL_CHG_ORIG.TRANS_REC');
1202: fnd_file.put_line(fnd_file.log,SQLERRM);
1203: igs_ge_msg_stack.add;
1204: app_exception.raise_exception;
1205: END Trans_Rec;
1206:
1207: END igf_sl_dl_chg_orig;