DBA Data[Home] [Help]

APPS.IGS_FI_FEE_STR_STAT_PKG dependencies on IGS_GE_MSG_STACK

Line 32: IGS_GE_MSG_STACK.ADD;

28: Fetch cur_old_ref_values INTO old_references;
29: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT', 'VALIDATE_INSERT')) THEN
30: Close cur_old_ref_values;
31: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
32: IGS_GE_MSG_STACK.ADD;
33: App_Exception.Raise_Exception;
34: Return;
35: END IF;
36: Close cur_old_ref_values;

Line 84: IGS_GE_MSG_STACK.ADD;

80: IF upper(Column_Name) = 'CLOSED_IND' OR
81: column_name is NULL THEN
82: IF new_references.closed_ind <> 'Y' AND new_references.closed_ind <> 'N' THEN
83: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
84: IGS_GE_MSG_STACK.ADD;
85: App_Exception.Raise_Exception;
86: END IF;
87: END IF;
88:

Line 95: IGS_GE_MSG_STACK.ADD;

91: IF new_references.s_fee_structure_status <> 'ACTIVE' AND
92: new_references.s_fee_structure_status <> 'INACTIVE' AND
93: new_references.s_fee_structure_status <> 'PLANNED' THEN
94: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
95: IGS_GE_MSG_STACK.ADD;
96: App_Exception.Raise_Exception;
97: END IF;
98: END IF;
99: END Check_Constraints;

Line 163: IGS_GE_MSG_STACK.ADD;

159: IF (p_action = 'INSERT') THEN
160: -- Call all the procedures related to Before Insert.
161: IF Get_PK_For_Validation ( new_references.fee_structure_status) THEN
162: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
163: IGS_GE_MSG_STACK.ADD;
164: App_Exception.Raise_Exception;
165: END IF;
166: Check_Constraints;
167: ELSIF (p_action = 'UPDATE') THEN

Line 177: IGS_GE_MSG_STACK.ADD;

173: ELSIF (p_action = 'VALIDATE_INSERT') THEN
174: -- Call all the procedures related to Before Insert.
175: IF Get_PK_For_Validation ( new_references.fee_structure_status) THEN
176: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
177: IGS_GE_MSG_STACK.ADD;
178: App_Exception.Raise_Exception;
179: END IF;
180: Check_Constraints;
181: ELSIF (p_action = 'VALIDATE_UPDATE') THEN

Line 217: IGS_GE_MSG_STACK.ADD;

213: X_LAST_UPDATE_LOGIN := -1;
214: end if;
215: else
216: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
217: IGS_GE_MSG_STACK.ADD;
218: app_exception.raise_exception;
219: end if;
220: Before_DML(
221: p_action=>'INSERT',

Line 282: IGS_GE_MSG_STACK.ADD;

278: open c1;
279: fetch c1 into tlinfo;
280: if (c1%notfound) then
281: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
282: IGS_GE_MSG_STACK.ADD;
283: app_exception.raise_exception;
284: close c1;
285: return;
286: end if;

Line 295: IGS_GE_MSG_STACK.ADD;

291: ) then
292: null;
293: else
294: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
295: IGS_GE_MSG_STACK.ADD;
296: app_exception.raise_exception;
297: end if;
298: return;
299: end LOCK_ROW;

Line 327: IGS_GE_MSG_STACK.ADD;

323: X_LAST_UPDATE_LOGIN := -1;
324: end if;
325: else
326: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
327: IGS_GE_MSG_STACK.ADD;
328: app_exception.raise_exception;
329: end if;
330: Before_DML(
331: p_action=>'UPDATE',