DBA Data[Home] [Help]

APPS.IGS_AD_PRCS_CAT_STEP_PKG dependencies on IGS_AD_VAL_APCS

Line 103: IF IGS_AD_VAL_APCS.admp_val_sasty_clsd (

99:
100: IF NVL(new_references.step_group_type,'TRACK') <> 'TRACK' THEN
101: IF NVL(p_inserting, FALSE) THEN
102: -- Validate the system admission step type closed indicator.
103: IF IGS_AD_VAL_APCS.admp_val_sasty_clsd (
104: new_references.s_admission_step_type,
105: v_message_name) = FALSE THEN
106: Fnd_Message.Set_Name('IGS',v_message_name);
107: IGS_GE_MSG_STACK.ADD;

Line 138: IF IGS_AD_VAL_APCS.admp_val_apcs_mndtry (

134: -- Validate the Mandatory Step Indicator.
135: IF NVL(p_inserting, FALSE) OR
136: ( NVL(p_updating, FALSE) AND
137: old_references.mandatory_step_ind <> new_references.mandatory_step_ind) THEN
138: IF IGS_AD_VAL_APCS.admp_val_apcs_mndtry (
139: new_references.s_admission_step_type,
140: new_references.mandatory_step_ind,
141: v_message_name) = FALSE THEN
142: Fnd_Message.Set_Name('IGS',v_message_name);

Line 152: IF IGS_AD_VAL_APCS.admp_val_apcs_rstrct (

148: IF NVL(p_inserting, FALSE) OR
149: (NVL(p_updating, FALSE) AND
150: NVL(old_references.step_type_restriction_num, -1) <>
151: NVL(new_references.step_type_restriction_num, -1)) THEN
152: IF IGS_AD_VAL_APCS.admp_val_apcs_rstrct (
153: new_references.s_admission_step_type,
154: new_references.step_type_restriction_num,
155: v_message_name) = FALSE THEN
156: Fnd_Message.Set_Name('IGS',v_message_name);

Line 166: IF IGS_AD_VAL_APCS.admp_val_apcs_order (

162: IF NVL(p_inserting, FALSE) OR
163: (NVL(p_updating, FALSE) AND
164: NVL(old_references.step_order_num, -1) <>
165: NVL(new_references.step_order_num, -1)) THEN
166: IF IGS_AD_VAL_APCS.admp_val_apcs_order (
167: new_references.s_admission_step_type,
168: new_references.step_order_num,
169: v_message_name) = FALSE THEN
170: Fnd_Message.Set_Name('IGS',v_message_name);