DBA Data[Home] [Help]

APPS.IGS_FI_UNIT_FEE_TRG_PKG dependencies on IGS_FI_VAL_UFT

Line 89: IF IGS_FI_VAL_UFT.finp_val_uft_ins (

85: v_message_name varchar2(30);
86: BEGIN
87: IF p_inserting THEN
88: -- Validate unit fee trigger can be inserted
89: IF IGS_FI_VAL_UFT.finp_val_uft_ins (
90: new_references.fee_type,
91: v_message_name) = FALSE THEN
92: Fnd_Message.Set_Name('IGS',v_message_name);
93: IGS_GE_MSG_STACK.ADD;

Line 104: -- As part of the bug# 1956374 changed to the below call from IGS_FI_VAL_UFT.crsp_val_uv_sys_sts

100: IF NOT (new_references.LOGICAL_DELETE_DT IS NOT NULL AND p_updating ) THEN
101: -- Validate unit version is is active or planned.
102: IF (new_references.unit_cd IS NOT NULL AND
103: new_references.version_number IS NOT NULL) THEN
104: -- As part of the bug# 1956374 changed to the below call from IGS_FI_VAL_UFT.crsp_val_uv_sys_sts
105: IF IGS_PS_VAL_CALUL.crsp_val_uv_sys_sts (
106: new_references.unit_cd,
107: new_references.version_number,
108: v_message_name) = FALSE THEN

Line 117: IF IGS_FI_VAL_UFT.finp_val_uft_ftg (

113: END IF;
114: END IF;
115: -- Validate fee trigger group can be defined.
116: IF (new_references.fee_trigger_group_number IS NOT NULL) THEN
117: IF IGS_FI_VAL_UFT.finp_val_uft_ftg (
118: new_references.fee_type,
119: new_references.fee_trigger_group_number,
120: v_message_name) = FALSE THEN
121: Fnd_Message.Set_Name('IGS',v_message_name);

Line 129: -- As part of the bug# 1956374 changed to the below call from IGS_FI_VAL_UFT.crsp_val_posp_cat

125: END IF;
126: -- Validate calendar type is not closed and is of type teaching.
127: IF (new_references.cal_type IS NOT NULL) THEN
128:
129: -- As part of the bug# 1956374 changed to the below call from IGS_FI_VAL_UFT.crsp_val_posp_cat
130: IF IGS_PS_VAL_POSP.crsp_val_posp_cat (
131: new_references.cal_type,
132: v_message_name) = FALSE THEN
133: Fnd_Message.Set_Name('IGS',v_message_name);

Line 153: -- As part of the bug# 1956374 changed to the below call from IGS_FI_VAL_UFT.crsp_val_loc_cd

149: END IF;
150: END IF;
151: -- Validate location code is not closed and is of type campus.
152: IF (new_references.location_cd IS NOT NULL) THEN
153: -- As part of the bug# 1956374 changed to the below call from IGS_FI_VAL_UFT.crsp_val_loc_cd
154: IF IGS_PS_VAL_UOO.crsp_val_loc_cd (
155: new_references.location_cd,
156: v_message_name) = FALSE THEN
157: Fnd_Message.Set_Name('IGS',v_message_name);

Line 164: -- As part of the bug# 1956374 changed to the below call from IGS_FI_VAL_UFT.crsp_val_ucl_closed

160: END IF;
161: END IF;
162: -- Validate unit class is not closed.
163: IF (new_references.unit_class IS NOT NULL) THEN
164: -- As part of the bug# 1956374 changed to the below call from IGS_FI_VAL_UFT.crsp_val_ucl_closed
165: IF IGS_AS_VAL_UAI.crsp_val_ucl_closed (
166: new_references.unit_class,
167: v_message_name) = FALSE THEN
168: Fnd_Message.Set_Name('IGS',v_message_name);

Line 224: IF IGS_FI_VAL_UFT.finp_val_uft_open(

220: BEGIN
221: -- Validate for open ended IGS_FI_UNIT_FEE_TRG records.
222: IF (p_inserting OR p_updating) THEN
223: IF new_references.logical_delete_dt IS NULL THEN
224: IF IGS_FI_VAL_UFT.finp_val_uft_open(
225: new_references.fee_cat,
226: new_references.fee_cal_type,
227: new_references.fee_ci_sequence_number,
228: new_references.fee_type,