DBA Data[Home] [Help]

APPS.PSP_SCHEDULES_PKG dependencies on APP_EXCEPTION

Line 51: app_exception.raise_exception;

47: X_LAST_UPDATE_LOGIN := -1;
48: end if;
49: else
50: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
51: app_exception.raise_exception;
52: end if;
53: insert into PSP_SCHEDULES (
54: ASSIGNMENT_ID,
55: PERSON_ID,

Line 175: app_exception.raise_exception;

171: open c1;
172: fetch c1 into tlinfo;
173: if (c1%notfound) then
174: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
175: app_exception.raise_exception;
176: close c1;
177: return;
178: end if;
179: close c1;

Line 237: app_exception.raise_exception;

233: ) then
234: null;
235: else
236: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
237: app_exception.raise_exception;
238: end if;
239: return;
240: end LOCK_ROW;
241:

Line 285: app_exception.raise_exception;

281: X_LAST_UPDATE_LOGIN := -1;
282: end if;
283: else
284: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
285: app_exception.raise_exception;
286: end if;
287: update PSP_SCHEDULES set
288: PERSON_ID = X_PERSON_ID,
289: FTE = X_FTE,