DBA Data[Home] [Help]

APPS.IGS_PS_VALIDATE_LGCY_PKG dependencies on IGS_PS_UNIT_OFR_OPT_PKG

Line 897: IF NOT igs_ps_unit_ofr_opt_pkg.check_call_number ( p_teach_cal_type => p_c_cal_type,

893: p_usec_rec.status := 'E';
894: ELSIF ( fnd_profile.value('IGS_PS_CALL_NUMBER') = 'USER_DEFINED' ) THEN
895:
896: IF p_usec_rec.call_number IS NOT NULL THEN
897: IF NOT igs_ps_unit_ofr_opt_pkg.check_call_number ( p_teach_cal_type => p_c_cal_type,
898: p_teach_sequence_num => p_n_seq_num,
899: p_call_number => p_usec_rec.call_number,
900: p_rowid => null ) THEN
901: fnd_message.set_name ( 'IGS', 'IGS_PS_DUPLICATE_CALL_NUMBER' );

Line 1103: IF NOT igs_ps_unit_ofr_opt_pkg.check_call_number ( p_teach_cal_type => p_c_cal_type,

1099:
1100:
1101: IF ( fnd_profile.value('IGS_PS_CALL_NUMBER') = 'USER_DEFINED' ) THEN
1102: IF p_usec_rec.call_number IS NOT NULL THEN
1103: IF NOT igs_ps_unit_ofr_opt_pkg.check_call_number ( p_teach_cal_type => p_c_cal_type,
1104: p_teach_sequence_num => p_n_seq_num,
1105: p_call_number => p_usec_rec.call_number,
1106: p_rowid => c_usec_rec.rowid ) THEN
1107: fnd_message.set_name ( 'IGS', 'IGS_PS_DUPLICATE_CALL_NUMBER' );

Line 1193: igs_ps_unit_ofr_opt_pkg.check_status_transition( p_n_uoo_id => c_usec_rec.uoo_id,

1189:
1190: --Validate unit section status transition
1191: IF p_usec_rec.unit_section_status <> c_usec_rec.unit_section_status THEN
1192: BEGIN
1193: igs_ps_unit_ofr_opt_pkg.check_status_transition( p_n_uoo_id => c_usec_rec.uoo_id,
1194: p_c_old_usec_sts => c_usec_rec.unit_section_status,
1195: p_c_new_usec_sts => p_usec_rec.unit_section_status);
1196: EXCEPTION WHEN OTHERS THEN
1197: p_usec_rec.status := 'E';