DBA Data[Home] [Help]

APPS.IGS_GE_S_ERROR_LOG_PKG dependencies on IGS_GE_MSG_STACK

Line 38: IGS_GE_MSG_STACK.ADD;

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

Line 126: IGS_GE_MSG_STACK.ADD;

122: IF Get_PK_For_Validation(
123: new_references.sequence_number
124: )THEN
125: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
126: IGS_GE_MSG_STACK.ADD;
127: App_Exception.Raise_Exception;
128: END IF;
129: ELSIF (p_action = 'UPDATE') THEN
130: -- Call all the procedures related to Before Update.

Line 140: IGS_GE_MSG_STACK.ADD;

136: IF Get_PK_For_Validation(
137: new_references.sequence_number
138: )THEN
139: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
140: IGS_GE_MSG_STACK.ADD;
141: App_Exception.Raise_Exception;
142: END IF;
143: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
144: Null;

Line 283: IGS_GE_MSG_STACK.ADD;

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

Line 305: IGS_GE_MSG_STACK.ADD;

301: ) then
302: null;
303: else
304: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
305: IGS_GE_MSG_STACK.ADD;
306: app_exception.raise_exception;
307: end if;
308: return;
309: end LOCK_ROW;