DBA Data[Home] [Help]

APPS.IGS_FI_EL_RNG_PKG dependencies on IGS_FI_VAL_ER

Line 84: IF IGS_FI_VAL_ER.finp_val_er_ins (

80: -- If IGS_FI_FEE_TYPE.s_fee_trigger_cat = 'INSTITUTN' or
81: -- IGS_FI_FEE_TYPE.s_fee_type = 'HECS', then element ranges
82: -- can only be defined against FTCI's.
83: IF new_references.s_relation_type <> 'FTCI' THEN
84: IF IGS_FI_VAL_ER.finp_val_er_ins (
85: new_references.fee_type,
86: v_message_name) = FALSE THEN
87: Fnd_Message.Set_Name('IGS',v_message_name);
88: IGS_GE_MSG_STACK.ADD;

Line 94: IF IGS_FI_VAL_ER.finp_val_er_create (

90: END IF;
91: END IF;
92: -- If charge method type of parent record is 'FLATRATE' or fee_type.s_fee_type
93: -- is 'HECS' then elements ranges cannot be defined.
94: IF IGS_FI_VAL_ER.finp_val_er_create (
95: new_references.fee_cal_type,
96: new_references.fee_ci_sequence_number,
97: new_references.fee_type,
98: new_references.fee_cat,

Line 107: IF IGS_FI_VAL_ER.finp_val_er_rltn (

103: END IF;
104: END IF;
105: -- Validate fee category is only set when the relation type = 'FCFL'.
106: IF p_inserting OR p_updating THEN
107: IF IGS_FI_VAL_ER.finp_val_er_rltn (
108: new_references.s_relation_type,
109: new_references.fee_cat,
110: v_message_name) = FALSE THEN
111: Fnd_Message.Set_Name('IGS',v_message_name);

Line 115: IF IGS_FI_VAL_ER.finp_val_er_ranges (

111: Fnd_Message.Set_Name('IGS',v_message_name);
112: IGS_GE_MSG_STACK.ADD;
113: App_Exception.Raise_Exception;
114: END IF;
115: IF IGS_FI_VAL_ER.finp_val_er_ranges (
116: new_references.lower_range,
117: new_references.upper_range,
118: v_message_name) = FALSE THEN
119: Fnd_Message.Set_Name('IGS',v_message_name);

Line 168: IF IGS_FI_VAL_ER.finp_val_er_defn(new_references.fee_type,

164: BEGIN
165: -- Validate if elements_range can be created and if so, then
166: -- validate the range value for overlaps.
167: IF p_inserting OR p_updating THEN
168: IF IGS_FI_VAL_ER.finp_val_er_defn(new_references.fee_type,
169: new_references.fee_cal_type,
170: new_references.fee_ci_sequence_number,
171: new_references.s_relation_type,
172: v_message_name) = FALSE THEN

Line 177: IF IGS_FI_VAL_ER.finp_val_er_ovrlp(new_references.fee_type,

173: Fnd_Message.Set_Name('IGS',v_message_name);
174: IGS_GE_MSG_STACK.ADD;
175: App_Exception.Raise_Exception;
176: END IF;
177: IF IGS_FI_VAL_ER.finp_val_er_ovrlp(new_references.fee_type,
178: new_references.fee_cal_type,
179: new_references.fee_ci_sequence_number,
180: new_references.s_relation_type,
181: new_references.fee_cat,