DBA Data[Home] [Help]

APPS.IGF_GR_RFMS_DISB_ORIG dependencies on IGF_GR_ATTEND_PELL

Line 560: cp_attending_pell igf_gr_attend_pell.attending_pell_cd%TYPE

556: CURSOR cur_attending_pell(
557: cp_ci_cal_type igf_gr_report_pell.ci_cal_type%TYPE,
558: cp_ci_sequence_number igf_gr_report_pell.ci_sequence_number%TYPE,
559: cp_reporting_pell igf_gr_report_pell.reporting_pell_cd%TYPE,
560: cp_attending_pell igf_gr_attend_pell.attending_pell_cd%TYPE
561: ) IS
562: SELECT 'Y'
563: FROM igf_gr_report_pell rep,
564: igf_gr_attend_pell att

Line 564: igf_gr_attend_pell att

560: cp_attending_pell igf_gr_attend_pell.attending_pell_cd%TYPE
561: ) IS
562: SELECT 'Y'
563: FROM igf_gr_report_pell rep,
564: igf_gr_attend_pell att
565: WHERE rep.rcampus_id = att.rcampus_id
566: AND rep.ci_cal_type = cp_ci_cal_type
567: AND rep.ci_sequence_number = cp_ci_sequence_number
568: AND rep.reporting_pell_cd = cp_reporting_pell

Line 678: FND_MESSAGE.SET_NAME('IGF', 'IGF_GR_ATTEND_PELL_NOT_SETUP');

674: -- If Attending pell child record does not exist?
675: IF (cur_attending_pell%NOTFOUND) THEN
676: l_valid_rec := FALSE;
677:
678: FND_MESSAGE.SET_NAME('IGF', 'IGF_GR_ATTEND_PELL_NOT_SETUP');
679: FND_FILE.PUT_LINE(FND_FILE.LOG, FND_MESSAGE.GET);
680: END IF;
681: CLOSE cur_attending_pell;
682: