DBA Data[Home] [Help]

APPS.IGS_FI_PRC_FIN_LT_CHG dependencies on IGS_GE_MSG_STACK

Line 459: igs_ge_msg_stack.add;

455: p_bal_end_dt IS NULL OR
456: p_bal_type IS NULL OR
457: p_open_bal IS NULL ) THEN
458: fnd_message.set_name('IGS', 'IGS_GE_INVALID_VALUE');
459: igs_ge_msg_stack.add;
460: app_exception.raise_exception;
461: END IF;
462:
463: -- The Person_id passed as parameter to the procedure is validated

Line 466: igs_ge_msg_stack.add;

462:
463: -- The Person_id passed as parameter to the procedure is validated
464: IF igs_fi_gen_007.validate_person(p_person_id) = 'N' THEN
465: fnd_message.set_name('IGS', 'IGS_GE_INVALID_VALUE');
466: igs_ge_msg_stack.add;
467: app_exception.raise_exception;
468: END IF;
469:
470: -- The parameter Balance Start Date should less than Balance End Date

Line 473: igs_ge_msg_stack.add;

469:
470: -- The parameter Balance Start Date should less than Balance End Date
471: IF p_bal_start_dt > p_bal_end_dt THEN
472: fnd_message.set_name('IGS', 'IGS_GE_INVALID_VALUE');
473: igs_ge_msg_stack.add;
474: app_exception.raise_exception;
475: END IF;
476:
477: -- Select all Credits from the credits table for the person where the Effective

Line 1831: igs_ge_msg_stack.conc_exception_hndl;

1827: retcode := 2;
1828: WHEN OTHERS THEN
1829: retcode := 2;
1830: errbuf := fnd_message.get_string('IGS','IGS_GE_UNHANDLED_EXCEPTION') || ' : ' || SQLERRM;
1831: igs_ge_msg_stack.conc_exception_hndl;
1832: END calc_fin_lt_charge;
1833:
1834: END igs_fi_prc_fin_lt_chg;