DBA Data[Home] [Help]

APPS.IGS_PE_STD_TODO_PKG dependencies on IGS_GE_MSG_STACK

Line 34: IGS_GE_MSG_STACK.ADD;

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: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
34: IGS_GE_MSG_STACK.ADD;
35: Close cur_old_ref_values;
36: App_Exception.Raise_Exception;
37: Return;
38: END IF;

Line 74: IGS_GE_MSG_STACK.ADD;

70: IF upper(column_name) = 'S_STUDENT_TODO_TYPE' OR
71: column_name is null Then
72: IF new_references.s_student_todo_type <>UPPER(new_references.s_student_todo_type)Then
73: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
74: IGS_GE_MSG_STACK.ADD;
75: App_Exception.Raise_Exception;
76: END IF;
77: END IF;
78:

Line 90: IGS_GE_MSG_STACK.ADD;

86: ELSE
87: IF NOT IGS_PE_PERSON_PKG.Get_PK_For_Validation (
88: new_references.person_id ) THEN
89: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
90: IGS_GE_MSG_STACK.ADD;
91: App_Exception.Raise_Exception;
92: END IF;
93: END IF;
94: IF (((old_references.s_student_todo_type = new_references.s_student_todo_type)) OR

Line 103: IGS_GE_MSG_STACK.ADD;

99: IF NOT IGS_LOOKUPS_VIEW_Pkg.Get_PK_For_Validation (
100: 'STUDENT_TODO_TYPE',
101: new_references.s_student_todo_type ) THEN
102: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
103: IGS_GE_MSG_STACK.ADD;
104: App_Exception.Raise_Exception;
105: END IF;
106: END IF;
107: END Check_Parent_Existance;

Line 160: IGS_GE_MSG_STACK.ADD;

156: Open cur_rowid;
157: Fetch cur_rowid INTO lv_rowid;
158: IF (cur_rowid%FOUND) THEN
159: Fnd_Message.Set_Name ('IGS', 'IGS_PE_ST_PE_FK');
160: IGS_GE_MSG_STACK.ADD;
161: Close cur_rowid;
162: App_Exception.Raise_Exception;
163: Return;
164: END IF;

Line 212: IGS_GE_MSG_STACK.ADD;

208: new_references.person_id ,
209: new_references.s_student_todo_type ,
210: new_references.sequence_number ) THEN
211: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
212: IGS_GE_MSG_STACK.ADD;
213: App_Exception.Raise_Exception;
214: END IF;
215:
216: Check_Constraints; -- if procedure present

Line 235: IGS_GE_MSG_STACK.ADD;

231: new_references.person_id ,
232: new_references.s_student_todo_type ,
233: new_references.sequence_number ) THEN
234: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
235: IGS_GE_MSG_STACK.ADD;
236: App_Exception.Raise_Exception;
237: END IF;
238:
239: Check_Constraints; -- if procedure present

Line 312: IGS_GE_MSG_STACK.ADD;

308: X_PROGRAM_UPDATE_DATE := SYSDATE;
309: end if;
310: else
311: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
312: IGS_GE_MSG_STACK.ADD;
313: app_exception.raise_exception;
314: end if;
315: Before_DML(
316: p_action=>'INSERT',

Line 444: IGS_GE_MSG_STACK.ADD;

440: X_LAST_UPDATE_LOGIN := -1;
441: end if;
442: else
443: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
444: IGS_GE_MSG_STACK.ADD;
445: app_exception.raise_exception;
446: end if;
447: Before_DML(
448: p_action=>'UPDATE',