DBA Data[Home] [Help]

APPS.IGS_FI_CRDAPI_UTIL dependencies on IGS_FI_GEN_008

Line 112: igs_fi_gen_008.get_plan_details(p_n_person_id => p_n_person_id,

108: l_n_pln_bal NUMBER;
109:
110: BEGIN
111: --Get the Student's Active Payment Plan's details.
112: igs_fi_gen_008.get_plan_details(p_n_person_id => p_n_person_id,
113: p_n_act_plan_id => l_n_act_plan_id,
114: p_v_act_plan_name => l_v_act_plan_name);
115:
116: --If there is no active Payment Plan for the student, return from the procedure

Line 125: l_n_pln_bal := igs_fi_gen_008.get_plan_balance(p_n_act_plan_id => l_n_act_plan_id,

121: RETURN;
122: END IF;
123:
124: --Get the Student's Active Payment Plan Balance.
125: l_n_pln_bal := igs_fi_gen_008.get_plan_balance(p_n_act_plan_id => l_n_act_plan_id,
126: p_d_effective_date => NULL
127: );
128: --If the payment plan balance is less than the amount passed, return from the procedure
129: --by assigning proper error message and return status into the out parameters.

Line 250: IF igs_fi_gen_008.get_plan_balance(rec_cur_pp_insts.student_plan_id,NULL) = 0 THEN

246: END LOOP;
247: CLOSE cur_pp_insts;
248:
249: --If the person has paid-off all his installments, then his active payment plan needs to be closed.
250: IF igs_fi_gen_008.get_plan_balance(rec_cur_pp_insts.student_plan_id,NULL) = 0 THEN
251:
252: --Fetch the Student Active Payment Plan's details.
253: OPEN cur_pmt_plan(p_n_person_id,'ACTIVE');
254: FETCH cur_pmt_plan INTO rec_cur_pmt_plan;

Line 1209: IF igs_fi_gen_008.chk_active_pay_plan(p_n_party_id) = 'Y' THEN

1205: ELSE
1206: --If the input credit class is Installment Payments.. then
1207: IF p_v_credit_class = 'INSTALLMENT_PAYMENTS' THEN
1208: --Check if the person is on an active Payment Plan. If yes, return TRUE else return FALSE from this function.
1209: IF igs_fi_gen_008.chk_active_pay_plan(p_n_party_id) = 'Y' THEN
1210: RETURN TRUE;
1211: ELSE
1212: RETURN FALSE;
1213: END IF;