DBA Data[Home] [Help]

APPS.IGW_PROP_USERS_TBH dependencies on APP_EXCEPTION

Line 44: app_exception.raise_exception;

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 (
48: proposal_id,

Line 126: app_exception.raise_exception;

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
130: proposal_id = p_proposal_id,

Line 265: app_exception.raise_exception;

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;
269: close c1;

Line 293: app_exception.raise_exception;

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;
297: */