DBA Data[Home] [Help]

APPS.IGS_FI_GOVT_FUND_SRC_PKG dependencies on IGS_GE_MSG_STACK

Line 31: IGS_GE_MSG_STACK.ADD;

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

Line 70: IGS_GE_MSG_STACK.ADD;

66: new_references.govt_funding_source,
67: new_references.closed_ind,
68: v_message_name) = FALSE THEN
69: Fnd_Message.Set_Name('IGS',v_message_name);
70: IGS_GE_MSG_STACK.ADD;
71: App_Exception.Raise_Exception;
72: END IF;
73: END IF;
74: END BeforeRowInsertUpdate1;

Line 88: IGS_GE_MSG_STACK.ADD;

84: END IF;
85: IF ((UPPER (column_name) = 'CLOSED_IND') OR (column_name IS NULL)) THEN
86: IF (new_references.closed_ind NOT IN ('Y', 'N')) THEN
87: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
88: IGS_GE_MSG_STACK.ADD;
89: App_Exception.Raise_Exception;
90: END IF;
91: END IF;
92: END Check_Constraints;

Line 151: IGS_GE_MSG_STACK.ADD;

147: IF (Get_PK_For_Validation (
148: new_references.govt_funding_source
149: )) THEN
150: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
151: IGS_GE_MSG_STACK.ADD;
152: App_Exception.Raise_Exception;
153: END IF;
154: Check_Constraints;
155: ELSIF (p_action = 'UPDATE') THEN

Line 167: IGS_GE_MSG_STACK.ADD;

163: IF (Get_PK_For_Validation (
164: new_references.govt_funding_source
165: )) THEN
166: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
167: IGS_GE_MSG_STACK.ADD;
168: App_Exception.Raise_Exception;
169: END IF;
170: Check_Constraints;
171: ELSIF (p_action = 'VALIDATE_UPDATE') THEN

Line 205: IGS_GE_MSG_STACK.ADD;

201: X_LAST_UPDATE_LOGIN := -1;
202: end if;
203: else
204: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
205: IGS_GE_MSG_STACK.ADD;
206: app_exception.raise_exception;
207: end if;
208: Before_DML(
209: p_action=>'INSERT',

Line 266: IGS_GE_MSG_STACK.ADD;

262: fetch c1 into tlinfo;
263: if (c1%notfound) then
264: close c1;
265: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
266: IGS_GE_MSG_STACK.ADD;
267: app_exception.raise_exception;
268: return;
269: end if;
270: close c1;

Line 277: IGS_GE_MSG_STACK.ADD;

273: ) then
274: null;
275: else
276: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
277: IGS_GE_MSG_STACK.ADD;
278: app_exception.raise_exception;
279: end if;
280: return;
281: end LOCK_ROW;

Line 308: IGS_GE_MSG_STACK.ADD;

304: X_LAST_UPDATE_LOGIN := -1;
305: end if;
306: else
307: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
308: IGS_GE_MSG_STACK.ADD;
309: app_exception.raise_exception;
310: end if;
311: Before_DML(
312: p_action=>'UPDATE',