DBA Data[Home] [Help]

APPS.IGS_PR_S_PRG_CONF_PKG dependencies on IGS_PR_VAL_SCPC

Line 107: IF igs_pr_val_scpc.prgp_val_da_closed (

103: BEGIN
104: -- Validate the effective end date alias
105: IF p_inserting OR (p_updating AND
106: new_references.effective_end_dt_alias <> old_references.effective_end_dt_alias) THEN
107: IF igs_pr_val_scpc.prgp_val_da_closed (
108: new_references.effective_end_dt_alias,
109: v_message_name) = FALSE THEN
110: Fnd_Message.Set_Name('IGS',v_message_name);
111: IGS_GE_MSG_STACK.ADD;

Line 118: IF igs_pr_val_scpc.prgp_val_da_closed (

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

Line 129: IF igs_pr_val_scpc.prgp_val_da_closed (

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

Line 140: IF igs_pr_val_scpc.prgp_val_da_closed (

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

Line 151: IF igs_pr_val_scpc.prgp_val_da_closed (

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

Line 162: IF igs_pr_val_scpc.prgp_val_cause_da (

158: END IF;
159: -- Validate the show cause cut off date alias can only be set when the
160: -- show cause ind indicator is set to Y
161: IF p_inserting OR p_updating THEN
162: IF igs_pr_val_scpc.prgp_val_cause_da (
163: new_references.show_cause_ind,
164: new_references.show_cause_cutoff_dt_alias,
165: v_message_name) = FALSE THEN
166: Fnd_Message.Set_Name('IGS',v_message_name);

Line 174: IF igs_pr_val_scpc.prgp_val_appeal_da (

170: END IF;
171: -- Validate the appeal cut off date alias can only be set when the
172: -- appeal ind indicator is set to Y
173: IF p_inserting OR p_updating THEN
174: IF igs_pr_val_scpc.prgp_val_appeal_da (
175: new_references.appeal_ind,
176: new_references.appeal_cutoff_dt_alias,
177: v_message_name) = FALSE THEN
178: Fnd_Message.Set_Name('IGS',v_message_name);

Line 209: IF igs_pr_val_scpc.prgp_val_da_closed (

205: -- Validate the show cause cut off date alias
206: IF p_inserting OR (p_updating AND
207: NVL(new_references.show_cause_cutoff_dt_alias, 'NULL') <>
208: NVL(old_references.show_cause_cutoff_dt_alias, 'NULL')) THEN
209: IF igs_pr_val_scpc.prgp_val_da_closed (
210: new_references.show_cause_cutoff_dt_alias,
211: v_message_name) = FALSE THEN
212: Fnd_Message.Set_Name('IGS',v_message_name);
213: IGS_GE_MSG_STACK.ADD;

Line 221: IF igs_pr_val_scpc.prgp_val_da_closed (

217: -- Validate the appeal cut off date alias
218: IF p_inserting OR (p_updating AND
219: NVL(new_references.appeal_cutoff_dt_alias, 'NULL') <>
220: NVL(old_references.appeal_cutoff_dt_alias, 'NULL')) THEN
221: IF igs_pr_val_scpc.prgp_val_da_closed (
222: new_references.appeal_cutoff_dt_alias,
223: v_message_name) = FALSE THEN
224: Fnd_Message.Set_Name('IGS',v_message_name);
225: IGS_GE_MSG_STACK.ADD;