DBA Data[Home] [Help]

APPS.IGS_PS_TYPE_GRP_PKG dependencies on FND_MESSAGE

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

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

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

74: IF upper(column_name)= 'COURSE_TYPE_GROUP_CD' OR
75: column_name is null THEN
76: IF new_references.course_type_group_cd <> UPPER(new_references.course_type_group_cd)
77: THEN
78: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
79: IGS_GE_MSG_STACK.ADD;
80: App_Exception.Raise_Exception;
81: END IF;
82: END IF;

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

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

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

163: -- Call all the procedures related to Before Insert.
164: IF Get_PK_For_Validation(
165: new_references.course_type_group_cd
166: ) THEN
167: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
168: IGS_GE_MSG_STACK.ADD;
169: App_Exception.Raise_Exception;
170: END IF;
171: Check_Constraints;

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

179: ELSIF (p_action = 'VALIDATE_INSERT') THEN
180: IF Get_PK_For_Validation(
181: new_references.course_type_group_cd
182: ) THEN
183: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
184: IGS_GE_MSG_STACK.ADD;
185: App_Exception.Raise_Exception;
186: END IF;
187: Check_Constraints;

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

229: if X_LAST_UPDATE_LOGIN is NULL then
230: X_LAST_UPDATE_LOGIN := -1;
231: end if;
232: else
233: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
234: IGS_GE_MSG_STACK.ADD;
235: app_exception.raise_exception;
236: end if;
237: Before_DML( p_action => 'INSERT',

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

295: open c1;
296: fetch c1 into tlinfo;
297: if (c1%notfound) then
298: close c1;
299: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
300: app_exception.raise_exception;
301: return;
302: end if;
303: close c1;

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

306: AND (tlinfo.CLOSED_IND = X_CLOSED_IND)
307: ) then
308: null;
309: else
310: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
311: app_exception.raise_exception;
312: end if;
313: return;
314: end LOCK_ROW;

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

337: if X_LAST_UPDATE_LOGIN is NULL then
338: X_LAST_UPDATE_LOGIN := -1;
339: end if;
340: else
341: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
342: IGS_GE_MSG_STACK.ADD;
343: app_exception.raise_exception;
344: end if;
345: