DBA Data[Home] [Help]

APPS.IGS_CA_INST_PKG dependencies on IGS_CA_VAL_CI

Line 124: IF IGS_CA_VAL_CI.calp_val_ci_alt_cd(

120: l_count NUMBER(3);
121: v_message_name VARCHAR2(30);
122: BEGIN
123: -- Validate alternate code
124: IF IGS_CA_VAL_CI.calp_val_ci_alt_cd(
125: new_references.cal_type,
126: new_references.alternate_code,
127: v_message_name) = FALSE THEN
128: Fnd_Message.Set_Name('IGS',v_message_name);

Line 136: IF IGS_CA_VAL_CI.calp_val_cs_closed(

132: END IF;
133: IF p_inserting OR
134: (new_references.cal_status <> old_references.cal_status) THEN
135: -- Validate calendar status
136: IF IGS_CA_VAL_CI.calp_val_cs_closed(
137: new_references.cal_status,
138: v_message_name) = FALSE THEN
139: Fnd_Message.Set_Name('IGS',v_message_name);
140: IGS_GE_MSG_STACK.ADD;

Line 172: IF IGS_CA_VAL_CI.calp_val_ci_status(p_cal_type => '',

168: -- Validate calendar instance status
169: IF (new_references.cal_status <> old_references.cal_status)
170: THEN
171: -- partial call to calp_val_ci_status
172: IF IGS_CA_VAL_CI.calp_val_ci_status(p_cal_type => '',
173: p_sequence_number => NULL,
174: p_old_cal_status => old_references.cal_status,
175: p_new_cal_status => new_references.cal_status,
176: p_message_name => v_message_name) = FALSE

Line 207: IF IGS_CA_VAL_CI.calp_val_ci_status (p_cal_type => NVL (new_references.cal_type, old_references.cal_type),

203: -- Validate calendar instance status
204: IF p_inserting OR p_updating THEN
205: -- Validate calendar instance status
206: -- not all parameters are included in the call to calp_val_ci_status
207: IF IGS_CA_VAL_CI.calp_val_ci_status (p_cal_type => NVL (new_references.cal_type, old_references.cal_type),
208: p_sequence_number => NVL (new_references.sequence_number, old_references.sequence_number),
209: p_old_cal_status => '',
210: p_new_cal_status => NVL (new_references.cal_status, old_references.cal_status),
211: p_message_name => v_message_name) = FALSE