DBA Data[Home] [Help]

APPS.IGS_GR_NOTE_TYPE_PKG dependencies on FND_MESSAGE

Line 34: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');

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

Line 96: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');

92: END IF ;
93:
94: IF upper(Column_name) = 'GRD_NOTE_TYPE' OR COLUMN_NAME IS NULL THEN
95: IF new_references.GRD_NOTE_TYPE<> upper(new_references.GRD_NOTE_TYPE) then
96: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
97: App_Exception.Raise_Exception ;
98: END IF;
99:
100: END IF ;

Line 141: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');

137:
138: IF (p_action = 'INSERT') THEN
139: -- Call all the procedures related to Before Insert.
140: IF GET_PK_FOR_VALIDATION(NEW_REFERENCES.grd_note_type) THEN
141: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
142: App_Exception.Raise_Exception;
143: END IF;
144:
145: check_constraints;

Line 155: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');

151: -- Call all the procedures related to Before Delete.
152: Check_Child_Existance;
153: ELSIF (p_action = 'VALIDATE_INSERT') THEN
154: IF GET_PK_FOR_VALIDATION(NEW_REFERENCES.grd_note_type) THEN
155: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
156: App_Exception.Raise_Exception;
157: END IF;
158:
159: check_constraints;

Line 200: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');

196: if X_LAST_UPDATE_LOGIN is NULL then
197: X_LAST_UPDATE_LOGIN := -1;
198: end if;
199: else
200: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
201: app_exception.raise_exception;
202: end if;
203:
204: Before_DML (

Line 260: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

256: open c1;
257: fetch c1 into tlinfo;
258: if (c1%notfound) then
259: close c1;
260: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
261: app_exception.raise_exception;
262: return;
263: end if;
264: close c1;

Line 270: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

266: if ( (tlinfo.DESCRIPTION = X_DESCRIPTION)
267: ) then
268: null;
269: else
270: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
271: app_exception.raise_exception;
272: end if;
273: return;
274: end LOCK_ROW;

Line 300: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');

296: if X_LAST_UPDATE_LOGIN is NULL then
297: X_LAST_UPDATE_LOGIN := -1;
298: end if;
299: else
300: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
301: app_exception.raise_exception;
302: end if;
303:
304: Before_DML (