DBA Data[Home] [Help]

APPS.IGS_PE_RELATIONSHIPS_PKG dependencies on APP_EXCEPTION

Line 144: app_exception.raise_exception;

140:
141: IF l_profile_addr_usage IS NULL THEN
142: FND_MESSAGE.SET_NAME ('IGS','IGS_PE_ADR_USG');
143: igs_ge_msg_stack.add;
144: app_exception.raise_exception;
145: END IF;
146:
147: --
148: -- copy the address of the person to the member only if the student's age is

Line 357: app_exception.raise_exception;

353: BEGIN
354: IF p_start_date > sysdate THEN
355: fnd_message.set_name ('IGS', 'IGS_AD_ST_DT_LT_SYS_DT');
356: igs_ge_msg_stack.add;
357: app_exception.raise_exception;
358: END IF;
359: IF p_end_date IS NOT NULL THEN
360: IF p_start_date > p_end_date THEN
361: fnd_message.set_name ('IGS', 'IGS_FI_ST_DT_LE_END_DT');

Line 363: app_exception.raise_exception;

359: IF p_end_date IS NOT NULL THEN
360: IF p_start_date > p_end_date THEN
361: fnd_message.set_name ('IGS', 'IGS_FI_ST_DT_LE_END_DT');
362: igs_ge_msg_stack.add;
363: app_exception.raise_exception;
364: END IF ;
365: END IF;
366: OPEN per_birth_dt;
367: FETCH per_birth_dt INTO l_birth_date;

Line 372: app_exception.raise_exception;

368: CLOSE per_birth_dt;
369: IF l_birth_date IS NOT NULL AND p_start_date < l_birth_date THEN
370: fnd_message.set_name ('IGS', 'IGS_AD_STRT_DT_LESS_BIRTH_DT');
371: igs_ge_msg_stack.add;
372: app_exception.raise_exception;
373: END IF;
374: END;
375: END IF;
376: