DBA Data[Home] [Help]

APPS.IGW_PROP_USERS_TBH dependencies on FND_MESSAGE

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

39: if l_last_update_login is NULL then
40: l_last_update_login := -1;
41: end if;
42: else
43: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
44: app_exception.raise_exception;
45: end if;
46:
47: insert into igw_prop_users (

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

121: if l_last_update_login is NULL then
122: l_last_update_login := -1;
123: end if;
124: else
125: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
126: app_exception.raise_exception;
127: end if;
128:
129: update IGW_PROP_USERS set

Line 142: fnd_message.set_name('IGW', 'IGW_SS_RECORD_CHANGED');

138: where rowid = x_rowid
139: and record_version_number = p_record_version_number;
140:
141: if (sql%notfound) then
142: fnd_message.set_name('IGW', 'IGW_SS_RECORD_CHANGED');
143: fnd_msg_pub.Add;
144: x_return_status := 'E';
145: end if;
146:

Line 173: fnd_message.set_name('IGW', 'IGW_SS_RECORD_CHANGED');

169: where rowid = x_rowid
170: and record_version_number = p_record_version_number;
171:
172: if (sql%notfound) then
173: fnd_message.set_name('IGW', 'IGW_SS_RECORD_CHANGED');
174: fnd_msg_pub.Add;
175: x_return_status := 'E';
176: end if;
177:

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

260: begin
261: open c1;
262: fetch c1 into tlinfo;
263: if (c1%notfound) then
264: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
265: app_exception.raise_exception;
266: close c1;
267: return;
268: end if;

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

288: AND (X_END_DATE_ACTIVE is null)))
289: ) then
290: null;
291: else
292: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
293: app_exception.raise_exception;
294: end if;
295: return;
296: end LOCK_ROW;