DBA Data[Home] [Help]

APPS.IGS_PR_S_OU_PRG_CONF_PKG dependencies on IGS_PR_VAL_SCPC

Line 117: IF igs_pr_val_scpc.prgp_val_da_closed (

113: END IF;
114: -- Validate the application start date alias
115: IF p_inserting OR (p_updating AND
116: new_references.apply_start_dt_alias <> old_references.apply_start_dt_alias) THEN
117: IF igs_pr_val_scpc.prgp_val_da_closed (
118: new_references.apply_start_dt_alias,
119: v_message_name) = FALSE THEN
120: Fnd_Message.Set_Name('IGS',v_message_name);
121: IGS_GE_MSG_STACK.ADD;

Line 128: IF igs_pr_val_scpc.prgp_val_da_closed (

124: END IF;
125: -- Validate the application end date alias
126: IF p_inserting OR (p_updating AND
127: new_references.apply_end_dt_alias <> old_references.apply_end_dt_alias) THEN
128: IF igs_pr_val_scpc.prgp_val_da_closed (
129: new_references.apply_end_dt_alias,
130: v_message_name) = FALSE THEN
131: Fnd_Message.Set_Name('IGS',v_message_name);
132: IGS_GE_MSG_STACK.ADD;

Line 139: IF igs_pr_val_scpc.prgp_val_da_closed (

135: END IF;
136: -- Validate the end benefit date alias
137: IF p_inserting OR (p_updating AND
138: new_references.end_benefit_dt_alias <> old_references.end_benefit_dt_alias) THEN
139: IF igs_pr_val_scpc.prgp_val_da_closed (
140: new_references.end_benefit_dt_alias,
141: v_message_name) = FALSE THEN
142: Fnd_Message.Set_Name('IGS',v_message_name);
143: IGS_GE_MSG_STACK.ADD;

Line 150: IF igs_pr_val_scpc.prgp_val_da_closed (

146: END IF;
147: -- Validate the end penalty date alias
148: IF p_inserting OR (p_updating AND
149: new_references.end_penalty_dt_alias <> old_references.end_penalty_dt_alias) THEN
150: IF igs_pr_val_scpc.prgp_val_da_closed (
151: new_references.end_penalty_dt_alias,
152: v_message_name) = FALSE THEN
153: Fnd_Message.Set_Name('IGS',v_message_name);
154: IGS_GE_MSG_STACK.ADD;

Line 183: IF igs_pr_val_scpc.prgp_val_cause_da (

179: END IF;
180: -- Validate the show cause cut off date alias can only be set when the
181: -- show cause ind indicator is set to Y
182: IF p_inserting OR p_updating THEN
183: IF igs_pr_val_scpc.prgp_val_cause_da (
184: new_references.show_cause_ind,
185: new_references.show_cause_cutoff_dt_alias,
186: v_message_name) = FALSE THEN
187: Fnd_Message.Set_Name('IGS',v_message_name);

Line 195: IF igs_pr_val_scpc.prgp_val_appeal_da (

191: END IF;
192: -- Validate the appeal cut off date alias can only be set when the
193: -- appeal ind indicator is set to Y
194: IF p_inserting OR p_updating THEN
195: IF igs_pr_val_scpc.prgp_val_appeal_da (
196: new_references.appeal_ind,
197: new_references.appeal_cutoff_dt_alias,
198: v_message_name) = FALSE THEN
199: Fnd_Message.Set_Name('IGS',v_message_name);

Line 234: IF igs_pr_val_scpc.prgp_val_da_closed (

230: -- Validate the show cause cut off date alias
231: IF p_inserting OR (p_updating AND
232: NVL(new_references.show_cause_cutoff_dt_alias, 'NULL') <>
233: NVL(old_references.show_cause_cutoff_dt_alias, 'NULL')) THEN
234: IF igs_pr_val_scpc.prgp_val_da_closed (
235: new_references.show_cause_cutoff_dt_alias,
236: v_message_name) = FALSE THEN
237: Fnd_Message.Set_Name('IGS',v_message_name);
238: IGS_GE_MSG_STACK.ADD;

Line 246: IF igs_pr_val_scpc.prgp_val_da_closed (

242: -- Validate the appeal cut off date alias
243: IF p_inserting OR (p_updating AND
244: NVL(new_references.appeal_cutoff_dt_alias, 'NULL') <>
245: NVL(old_references.appeal_cutoff_dt_alias, 'NULL')) THEN
246: IF igs_pr_val_scpc.prgp_val_da_closed (
247: new_references.appeal_cutoff_dt_alias,
248: v_message_name) = FALSE THEN
249: Fnd_Message.Set_Name('IGS',v_message_name);
250: IGS_GE_MSG_STACK.ADD;