DBA Data[Home] [Help]

APPS.IGW_PROP_PERSON_SUPPORT_TBH dependencies on FND_MESSAGE

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

79: if l_last_update_login is NULL then
80: l_last_update_login := -1;
81: end if;
82: else
83: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
84: app_exception.raise_exception;
85: end if;
86:
87: insert into igw_prop_person_support (

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

281: if l_last_update_login is NULL then
282: l_last_update_login := -1;
283: end if;
284: else
285: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
286: app_exception.raise_exception;
287: end if;
288:
289: update IGW_PROP_PERSON_SUPPORT set

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

337: where rowid = x_rowid
338: and record_version_number = p_record_version_number;
339:
340: if (sql%notfound) then
341: fnd_message.set_name('IGW', 'IGW_SS_RECORD_CHANGED');
342: fnd_msg_pub.Add;
343: x_return_status := 'E';
344: end if;
345:

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

368: where rowid = x_rowid
369: and record_version_number = p_record_version_number;
370:
371: if (sql%notfound) then
372: fnd_message.set_name('IGW', 'IGW_SS_RECORD_CHANGED');
373: fnd_msg_pub.Add;
374: x_return_status := 'E';
375: end if;
376:

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

461: begin
462: open c1;
463: fetch c1 into tlinfo;
464: if (c1%notfound) then
465: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
466: app_exception.raise_exception;
467: close c1;
468: return;
469: end if;

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

489: AND (X_END_DATE_ACTIVE is null)))
490: ) then
491: null;
492: else
493: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
494: app_exception.raise_exception;
495: end if;
496: return;
497: end LOCK_ROW;