DBA Data[Home] [Help]

APPS.IGF_AW_SS_GEN_PKG dependencies on FND_PROFILE

Line 264: lv_awd_by_term_prof_val := fnd_profile.value('IGF_AW_AWD_ACCPT_BY_TERM');

260: p_last_accept_date DATE;
261:
262: BEGIN
263: -- Get the value of profile "IGF: Award Acceptance By Term via Student Self-Service"
264: lv_awd_by_term_prof_val := fnd_profile.value('IGF_AW_AWD_ACCPT_BY_TERM');
265:
266: IF lv_awd_by_term_prof_val = 'N' THEN
267: -- do term related things here
268: -- Get the first term associated with the context awarding period and award year.

Line 369: lv_awd_by_term_prof_val := fnd_profile.value('IGF_AW_AWD_ACCPT_BY_TERM');

365: p_last_accept_date DATE;
366:
367: BEGIN
368: -- Get the value of profile "IGF: Award Acceptance By Term via Student Self-Service"
369: lv_awd_by_term_prof_val := fnd_profile.value('IGF_AW_AWD_ACCPT_BY_TERM');
370:
371: IF lv_awd_by_term_prof_val = 'N' THEN
372: -- do term related things here
373: -- Get the first term asciciated with the context awarding period and award year.

Line 526: lv_view_only_prof_val := fnd_profile.value('IGF_AW_AWARD_VIEW_ONLY_IN_SS');

522: END IF;
523: END LOOP;
524:
525: -- Get the value of profile "IGF: View-only Awards via Student Self-Service"
526: lv_view_only_prof_val := fnd_profile.value('IGF_AW_AWARD_VIEW_ONLY_IN_SS');
527:
528: IF (lv_view_only_prof_val = 'Y') THEN -- If the profile value is Yes
529: lv_ret_status := 'VO'; -- All the awards will be shown in View Only mode in the Student Self-Service page.
530: RETURN lv_ret_status;

Line 572: lv_accept_by_term := fnd_profile.value('IGF_AW_AWD_ACCPT_BY_TERM');

568: l_ret_stat_for_acc := '';
569: l_ret_stat_for_dec := '';
570:
571:
572: lv_accept_by_term := fnd_profile.value('IGF_AW_AWD_ACCPT_BY_TERM');
573: IF lv_accept_by_term = 'Y' THEN
574: -- By term logic
575: FOR l_ap_award_terms IN c_ap_award_terms(p_ci_cal_type, p_ci_sequence_number, p_award_prd_cd, p_base_id)
576: LOOP