DBA Data[Home] [Help]

APPS.IGS_FI_GET_SUAEH dependencies on APP_EXCEPTION

Line 134: App_Exception.Raise_Exception(Null, Null, fnd_message.get);

130: if SQLCODE <> -20001 then
131: Fnd_Message.Set_Name ('IGS', 'IGS_GE_UNHANDLED_EXP');
132: Fnd_Message.Set_Token('NAME','IGS_FI_GET_SUAEH.FINPL_INS_SUA_REC');
133: IGS_GE_MSG_STACK.ADD;
134: App_Exception.Raise_Exception(Null, Null, fnd_message.get);
135: else
136: RAISE;
137: end if;
138: END finpl_ins_sua_rec;

Line 319: App_Exception.Raise_Exception(Null, Null, fnd_message.get);

315: if SQLCODE <> -20001 then
316: Fnd_Message.Set_Name ('IGS', 'IGS_GE_UNHANDLED_EXP');
317: Fnd_Message.Set_Token('NAME','IGS_FI_GET_SUAEH.FINP_INS_SUAH_REC');
318: IGS_GE_MSG_STACK.ADD;
319: App_Exception.Raise_Exception(Null, Null, fnd_message.get);
320: else
321: RAISE;
322: end if;
323: END finpl_ins_suah_rec;

Line 382: App_Exception.Raise_Exception(Null, Null, fnd_message.get);

378: if SQLCODE <> -20001 then
379: Fnd_Message.Set_Name ('IGS', 'IGS_GE_UNHANDLED_EXP');
380: Fnd_Message.Set_Token('NAME','IGS_FI_GET_SUAEH.FINPL_INS_SUAHV_REC');
381: IGS_GE_MSG_STACK.ADD;
382: App_Exception.Raise_Exception(Null, Null, fnd_message.get);
383: else
384: RAISE;
385: end if;
386: END finpl_ins_suahv_rec;

Line 457: App_Exception.Raise_Exception(Null, Null, fnd_message.get);

453: if SQLCODE <> -20001 then
454: Fnd_Message.Set_Name ('IGS', 'IGS_GE_UNHANDLED_EXP');
455: Fnd_Message.Set_Token('NAME','IGS_FI_GET_SUAEH.FINPL_PRC_SUA_ENRHIST');
456: IGS_GE_MSG_STACK.ADD;
457: App_Exception.Raise_Exception(Null, Null, fnd_message.get);
458: else
459: RAISE;
460: end if;
461: END finpl_prc_sua_enrhist;

Line 495: App_Exception.Raise_Exception(Null, Null, fnd_message.get);

491: IF p_person_id IS NULL OR
492: p_effective_dt IS NULL THEN
493: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
494: IGS_GE_MSG_STACK.ADD;
495: App_Exception.Raise_Exception(Null, Null, fnd_message.get);
496: END IF;
497: -- check if the effective history has already been captured
498: IF gv_person_id IS NOT NULL AND
499: gv_effective_dt IS NOT NULL THEN

Line 562: App_Exception.Raise_Exception(Null, Null, fnd_message.get);

558: r_sua);
559: ELSE -- unrecognised status
560: Fnd_Message.Set_Name ('IGS', 'IGS_FI_UNRECOG_SUA_STATUS');
561: IGS_GE_MSG_STACK.ADD;
562: App_Exception.Raise_Exception(Null, Null, fnd_message.get);
563: END IF;
564: ELSE -- processing history effective up until the current day
565: -- check if effective date falls within the current SUA history
566: OPEN c_suah( r_sua.course_cd,

Line 808: App_Exception.Raise_Exception(Null, Null, fnd_message.get);

804: END IF;
805: ELSE -- unrecognised status
806: Fnd_Message.Set_Name ('IGS', 'IGS_FI_UNRECOG_SUA_STATUS');
807: IGS_GE_MSG_STACK.ADD;
808: App_Exception.Raise_Exception(Null, Null, fnd_message.get);
809: END IF;
810: END IF;
811: END LOOP;
812: END;

Line 827: App_Exception.Raise_Exception(Null, Null, fnd_message.get);

823: igs_ge_date.igschardt(p_effective_dt);
824: FND_MESSAGE.SET_NAME('IGS','IGS_GE_PARAMETERS');
825: FND_MESSAGE.SET_TOKEN('VALUE',lv_param_values);
826: IGS_GE_MSG_STACK.ADD;
827: App_Exception.Raise_Exception(Null, Null, fnd_message.get);
828: else
829: RAISE;
830: end if;
831: END finp_get_suaeh;