DBA Data[Home] [Help]

APPS.IGF_AW_PACKNG_SUBFNS dependencies on IGF_AW_COA_GEN

Line 757: l_coa_months := igf_aw_coa_gen.coa_duration(l_base_id,l_awd_prd_code);

753: OPEN get_awd_fmly_contrib_type(l_base_id);
754: FETCH get_awd_fmly_contrib_type INTO lv_awd_fmly_contrib_type;
755: CLOSE get_awd_fmly_contrib_type;
756:
757: l_coa_months := igf_aw_coa_gen.coa_duration(l_base_id,l_awd_prd_code);
758: IF l_coa_months > 12 OR l_coa_months < 0 THEN
759: l_coa_months := 12;
760: END IF;
761:

Line 1172: IF (p_course_type IS NULL) AND (igf_aw_coa_gen.canUseAnticipVal) AND (p_called_from = 'PACKAGING') THEN

1168: -- Note: We don't look into Admissions for Prog type, bcoz Admissions does not provide
1169: -- this information.
1170: -- 2. Profile option permits to consider anticipated data
1171: -- 3. Call is from Packaging concurent process
1172: IF (p_course_type IS NULL) AND (igf_aw_coa_gen.canUseAnticipVal) AND (p_called_from = 'PACKAGING') THEN
1173:
1174: -- Anticipated data is defined at the term level. But the Packaging concurrent process
1175: -- works at the awarding period level. We will scan each term (starting from the earliest)
1176: -- in the awarding period and get its anticipated data. If Prog type is found for a

Line 1221: IF (l_class_standing IS NULL) AND (igf_aw_coa_gen.canUseAnticipVal) AND (p_called_from = 'PACKAGING') THEN

1217: -- Note: We don't look into Admissions for Class Standing, bcoz Admissions does not provide
1218: -- this information.
1219: -- 2. Profile option permits to consider anticipated data
1220: -- 3. Call is from Packaging concurent process
1221: IF (l_class_standing IS NULL) AND (igf_aw_coa_gen.canUseAnticipVal) AND (p_called_from = 'PACKAGING') THEN
1222:
1223: -- Anticipated data is defined at the term level. But the Packaging concurrent process
1224: -- works at the awarding period level. We will scan each term (starting from the earliest)
1225: -- in the awarding period and get its anticipated data. If class standing is found for a

Line 1263: END IF; -- End of (l_class_standing IS NULL) AND (igf_aw_coa_gen.canUseAnticipVal) AND (p_called_from = 'PACKAGING')

1259: fnd_log.string(fnd_log.level_statement,
1260: 'igf.plsql.igf_aw_packng_subfns.get_class_stnd.debug',
1261: 'Both actual and anticipated class standing is not available for - ' ||'Base Id: ' ||NVL(p_base_id,'')|| ' for any of the terms in the awarding period: ' ||p_awd_period);
1262: END IF;
1263: END IF; -- End of (l_class_standing IS NULL) AND (igf_aw_coa_gen.canUseAnticipVal) AND (p_called_from = 'PACKAGING')
1264:
1265: RETURN l_class_standing;
1266: END get_class_stnd;
1267:

Line 1294: l_award := igf_aw_coa_gen.award_amount(p_base_id,p_awd_prd_code);

1290: l_unmetneed := NULL;
1291: l_award := NULL;
1292:
1293: l_unmetneed := igf_aw_gen_004.unmetneed_f(p_base_id,p_awd_prd_code);
1294: l_award := igf_aw_coa_gen.award_amount(p_base_id,p_awd_prd_code);
1295:
1296: IF NVL(p_mthd_type,'ISIR') = 'ISIR' THEN
1297: IF NVL(l_award,0) <> 0 AND l_unmetneed < 0 THEN
1298: RETURN TRUE;