DBA Data[Home] [Help]

APPS.IGS_FI_WAIVERS_API_PUB dependencies on IGS_FI_CRDAPI_UTIL

Line 591: IF NOT igs_fi_crdapi_util.validate_cal_inst (

587: END IF;
588:
589: -- Verify if the Fee Calendar Type and Fee Sequence number passed as inbound parameters
590: -- to the API is a valid value or not
591: IF NOT igs_fi_crdapi_util.validate_cal_inst (
592: p_v_cal_type => p_fee_cal_type,
593: p_n_ci_sequence_number => p_fee_ci_seq_number,
594: p_v_s_cal_cat => 'FEE'
595: ) THEN

Line 606: igs_fi_crdapi_util.validate_fci_lci_reln (

602:
603: -- Verify load calendar mapping exists in the calendar subsystem for the Fee Calendar Type and
604: -- Fee Sequence number passed as inbound parameters to the API
605: IF p_fee_cal_type IS NOT NULL AND p_fee_ci_seq_number IS NOT NULL THEN
606: igs_fi_crdapi_util.validate_fci_lci_reln (
607: p_v_fee_cal_type => p_fee_cal_type,
608: p_n_fee_ci_sequence_number => p_fee_ci_seq_number,
609: p_v_ld_cal_type => l_v_ld_cal_type,
610: p_n_ld_ci_sequence_number => l_v_ld_ci_seq_number,

Line 719: IF NOT igs_fi_crdapi_util.validate_curr ( p_v_currency_cd => p_currency_cd) THEN

715: END IF;
716: END IF;
717:
718: -- Validate if value of the inbound parameter P_CURRENCY_CD is active in the System
719: IF NOT igs_fi_crdapi_util.validate_curr ( p_v_currency_cd => p_currency_cd) THEN
720: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN
721: fnd_message.set_name('IGS', 'IGS_FI_INVALID_CUR');
722: fnd_message.set_token('CUR_CD', p_currency_cd);
723: fnd_msg_pub.add;