DBA Data[Home] [Help]

APPS.IGW_PROP_NARRATIVES_TBH dependencies on FND_MESSAGE

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

44: if l_last_update_login is NULL then
45: l_last_update_login := -1;
46: end if;
47: else
48: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
49: app_exception.raise_exception;
50: end if;
51:
52:

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

141: if l_last_update_login is NULL then
142: l_last_update_login := -1;
143: end if;
144: else
145: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
146: app_exception.raise_exception;
147: end if;
148:
149: update IGW_PROP_NARRATIVES set

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

162: where rowid = x_rowid
163: and record_version_number = p_record_version_number;
164:
165: if (sql%notfound) then
166: fnd_message.set_name('IGW', 'IGW_SS_RECORD_CHANGED');
167: fnd_msg_pub.Add;
168: x_return_status := 'E';
169: end if;
170:

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

193: where rowid = x_rowid
194: and record_version_number = p_record_version_number;
195:
196: if (sql%notfound) then
197: fnd_message.set_name('IGW', 'IGW_SS_RECORD_CHANGED');
198: fnd_msg_pub.Add;
199: x_return_status := 'E';
200: end if;
201:

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

286: begin
287: open c1;
288: fetch c1 into tlinfo;
289: if (c1%notfound) then
290: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
291: app_exception.raise_exception;
292: close c1;
293: return;
294: end if;

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

314: AND (X_END_DATE_ACTIVE is null)))
315: ) then
316: null;
317: else
318: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
319: app_exception.raise_exception;
320: end if;
321: return;
322: end LOCK_ROW;