DBA Data[Home] [Help]

APPS.IGF_AW_GEN_003 dependencies on FND_MSG_PUB

Line 3580: fnd_msg_pub.add;

3576: fnd_message.set_token('LD_ALT_CODE',igf_gr_gen.get_alt_code(term_amounts_rec.ld_cal_type,term_amounts_rec.ld_sequence_number));
3577: fnd_message.set_token('ATT_TYPE',igf_aw_gen.lookup_desc('IGF_GR_RFMS_ENROL_STAT',term_amounts_rec.base_attendance_type_code));
3578: fnd_message.set_token('TERM_TOTAL',term_amounts_rec.term_total);
3579: fnd_message.set_token('CALC_AMT',p_term_aid);
3580: fnd_msg_pub.add;
3581: END IF;
3582: END LOOP;
3583: --
3584: -- if the pell matrix changes for calculation

Line 3657: fnd_msg_pub.add;

3653: IF NVL(total_award_amt_rec.total_award_amt,0) < fund_details_rec.min_award_amt THEN
3654: fnd_message.set_name('IGF','IGF_AW_MIN_AMT_FAILED');
3655: fnd_message.set_token('AMOUNT',fund_details_rec.min_award_amt);
3656: fnd_message.set_token('FUND',p_fund_code);
3657: fnd_msg_pub.add;
3658: END IF;
3659:
3660: --
3661: -- Check if the Award Amount is exceeding the Max Award Amount in the fund

Line 3667: fnd_msg_pub.add;

3663: IF NVL(total_award_amt_rec.total_award_amt,0) > fund_details_rec.max_award_amt THEN
3664: fnd_message.set_name('IGF','IGF_AW_MAX_AMT_EXCEED');
3665: fnd_message.set_token('AMOUNT',fund_details_rec.max_award_amt);
3666: fnd_message.set_token('FUND',p_fund_code);
3667: fnd_msg_pub.add;
3668: END IF;
3669:
3670: --
3671: -- Check if the Award Amount is exceeding the Max Yearly Amounts in the fund

Line 3678: fnd_msg_pub.add;

3674: IF NVL(total_fund_awd_rec.total_fund_amt,0) > fund_details_rec.max_yearly_amt THEN
3675: fnd_message.set_name('IGF','IGF_AW_STD_EXCED_MAX_YR_AMT');
3676: fnd_message.set_token('AMOUNT',fund_details_rec.max_yearly_amt);
3677: fnd_message.set_token('FUND',p_fund_code);
3678: fnd_msg_pub.add;
3679: END IF;
3680: END IF;
3681: --
3682: -- Check whether the Award Amount is exceeding the LifeTime Amount in the fund

Line 3689: fnd_msg_pub.add;

3685: IF NVL(max_lf_count_rec.lf_total,0) > fund_details_rec.max_life_amt THEN
3686: fnd_message.set_name('IGF','IGF_AW_STD_EXCED_MAX_LF_AMT');
3687: fnd_message.set_token('AMOUNT',fund_details_rec.max_life_amt);
3688: fnd_message.set_token('FUND',p_fund_code);
3689: fnd_msg_pub.add;
3690: END IF;
3691: END IF;
3692: --
3693: -- Check whether the Award count is exceeding the LifeTime count in the fund

Line 3701: fnd_msg_pub.add;

3697: IF NVL(max_lf_count_rec.lf_count,0) > fund_details_rec.max_life_term THEN
3698: fnd_message.set_name('IGF','IGF_DB_MAX_LIFE_TERM_EXCEED');
3699: fnd_message.set_token('TERM',fund_details_rec.max_life_term );
3700: fnd_message.set_token('FUND',p_fund_code);
3701: fnd_msg_pub.add;
3702: END IF;
3703: END IF;
3704:
3705: --

Line 3747: fnd_msg_pub.add;

3743: ELSIF l_msg_name = 'IGF_AW_LOAN_LMT_NOT_FND' THEN
3744: l_msg_name := 'IGF_AW_LOAN_LMT_NOT_FND_WNG';
3745: END IF;
3746: fnd_message.set_name('IGF',l_msg_name);
3747: fnd_msg_pub.add;
3748: ELSIF ln_corrected_amt < 0 THEN
3749: -- if the ln_corrected_amt is less than 0 then some of the Stafford loan limit check has failed so
3750: -- we are displaying the appropriate warning message since the user can override the message.
3751: -- add yes no message to the stack

Line 3768: fnd_msg_pub.add;

3764: l_msg_name := 'IGF_AW_UNSUB_LMT_WNG';
3765: END IF;
3766: fnd_message.set_name('IGF',l_msg_name);
3767: fnd_message.set_token('FUND_CODE',p_fund_code);
3768: fnd_msg_pub.add;
3769: END IF;
3770: END IF;
3771: END IF;
3772: