DBA Data[Home] [Help]

APPS.IGS_FI_PRC_WAIVERS dependencies on FND_API

Line 670: RAISE fnd_api.g_exc_error;

666: x_return_status := 'E';
667: fnd_message.set_name('IGS',
668: l_v_message_name);
669: fnd_msg_pub.add;
670: RAISE fnd_api.g_exc_error;
671: END IF;
672:
673: -- Validate input parameters
674:

Line 686: RAISE fnd_api.g_exc_error;

682: p_v_raise_wf_event IS NULL
683: THEN
684: fnd_message.set_name('IGS','IGS_FI_PARAMETER_NULL');
685: fnd_msg_pub.add;
686: RAISE fnd_api.g_exc_error;
687: END IF;
688:
689: IF p_validation_level = 100 THEN
690: IF NOT validate_params(p_v_fee_cal_type => p_v_fee_cal_type,

Line 694: RAISE fnd_api.g_exc_error;

690: IF NOT validate_params(p_v_fee_cal_type => p_v_fee_cal_type,
691: p_n_fee_ci_seq => p_n_fee_ci_seq_number,
692: p_v_fee_type => p_v_fee_type,
693: p_v_waiver_name => p_v_waiver_name) THEN
694: RAISE fnd_api.g_exc_error;
695: END IF;
696: END IF;
697:
698: -- call the procedure for manual waiver adjustment

Line 715: RAISE fnd_api.g_exc_error;

711: );
712: fnd_message.set_name('IGS',
713: 'IGS_FI_WAV_NO_TRANS_CREATED');
714: fnd_msg_pub.add;
715: RAISE fnd_api.g_exc_error;
716: END IF;
717:
718: -- Get the Financial Aid Waiver Flag from System Options
719: OPEN cur_ctrl;

Line 782: RAISE fnd_api.g_exc_error;

778: p_sequence_number => p_n_fee_ci_seq_number)
779: );
780: fnd_msg_pub.add;
781: x_waiver_amount := 0;
782: RAISE fnd_api.g_exc_error;
783: END IF;
784: IF p_v_raise_wf_event = 'Y' THEN
785: -- Raise the Student Assignment Event
786: log_to_fnd(p_v_module => 'create_waivers',

Line 818: RAISE fnd_api.g_exc_error;

814: fnd_message.set_name('IGS',
815: 'IGS_FI_WAV_NO_TRANS_CREATED');
816: fnd_msg_pub.add;
817: x_waiver_amount := 0;
818: RAISE fnd_api.g_exc_error;
819: END IF;
820:
821: -- Calculate eligible waiver amount
822: igs_fi_wav_utils_001.get_eligible_waiver_amt(p_n_person_id => p_n_person_id,

Line 840: RAISE fnd_api.g_exc_error;

836: fnd_message.set_name('IGS',
837: 'IGS_FI_WAV_NO_TRANS_CREATED');
838: fnd_msg_pub.add;
839: x_waiver_amount := 0;
840: RAISE fnd_api.g_exc_error;
841: END IF;
842: log_to_fnd(p_v_module => 'create_waivers',
843: p_v_string => ' igs_fi_wav_utils_001.get_eligible_waiver_amt returned'||
844: ' Eligible amount : '||l_n_eligible_amnt

Line 890: RAISE fnd_api.g_exc_error;

886: fnd_message.set_name('IGS',
887: 'IGS_FI_WAV_NO_TRANS_CREATED');
888: fnd_msg_pub.add;
889: x_waiver_amount := 0;
890: RAISE fnd_api.g_exc_error;
891: END IF;
892: log_to_fnd(p_v_module => 'create_waivers',
893: p_v_string => ' The call to igs_fi_wav_utils_002.call_credits_api ' ||
894: ' returned waiver credit id : ' ||l_n_credit_id

Line 916: RAISE fnd_api.g_exc_error;

912: fnd_message.set_name('IGS',
913: 'IGS_FI_WAV_NO_TRANS_CREATED');
914: fnd_msg_pub.add;
915: x_waiver_amount := 0;
916: RAISE fnd_api.g_exc_error;
917: END IF;
918: log_to_fnd(p_v_module => 'create_waivers',
919: p_v_string => ' The call to igs_fi_wav_utils_002.call_charges_api ' ||
920: ' returned waiver Adjustment id : ' ||l_n_invoice_id

Line 947: RAISE fnd_api.g_exc_error;

943: fnd_message.set_name('IGS',
944: 'IGS_FI_WAV_NO_TRANS_CREATED');
945: fnd_msg_pub.add;
946: x_waiver_amount := 0;
947: RAISE fnd_api.g_exc_error;
948: END IF;
949: END IF;
950: -- If the flag is 'Y', raise the business event
951: IF l_v_finaid_wvr_flag = 'Y' AND p_v_raise_wf_event = 'Y' THEN

Line 973: WHEN fnd_api.g_exc_error THEN

969: );
970: x_waiver_amount := l_n_tot_wav_amnt;
971:
972: EXCEPTION
973: WHEN fnd_api.g_exc_error THEN
974: ROLLBACK TO create_waivers_sp;
975: x_return_status := fnd_api.g_ret_sts_error;
976: x_waiver_amount := 0;
977: fnd_msg_pub.count_and_get( p_count => x_msg_count,

Line 975: x_return_status := fnd_api.g_ret_sts_error;

971:
972: EXCEPTION
973: WHEN fnd_api.g_exc_error THEN
974: ROLLBACK TO create_waivers_sp;
975: x_return_status := fnd_api.g_ret_sts_error;
976: x_waiver_amount := 0;
977: fnd_msg_pub.count_and_get( p_count => x_msg_count,
978: p_data => x_msg_data);
979:

Line 980: WHEN fnd_api.g_exc_unexpected_error THEN

976: x_waiver_amount := 0;
977: fnd_msg_pub.count_and_get( p_count => x_msg_count,
978: p_data => x_msg_data);
979:
980: WHEN fnd_api.g_exc_unexpected_error THEN
981: ROLLBACK TO create_waivers_sp;
982: x_return_status := fnd_api.g_ret_sts_unexp_error;
983: x_waiver_amount := 0;
984: fnd_msg_pub.count_and_get( p_count => x_msg_count,

Line 982: x_return_status := fnd_api.g_ret_sts_unexp_error;

978: p_data => x_msg_data);
979:
980: WHEN fnd_api.g_exc_unexpected_error THEN
981: ROLLBACK TO create_waivers_sp;
982: x_return_status := fnd_api.g_ret_sts_unexp_error;
983: x_waiver_amount := 0;
984: fnd_msg_pub.count_and_get( p_count => x_msg_count,
985: p_data => x_msg_data);
986:

Line 995: x_return_status := fnd_api.g_ret_sts_unexp_error;

991: p_pkg_name => 'igs.plsql.igs_fi_prc_waivers',
992: p_procedure_name => 'create_waivers'
993: );
994: END IF;
995: x_return_status := fnd_api.g_ret_sts_unexp_error;
996: x_waiver_amount := 0;
997: fnd_msg_pub.count_and_get( p_count => x_msg_count,
998: p_data => x_msg_data);
999: END create_waivers;