DBA Data[Home] [Help]

APPS.GMS_PERSONNEL_PKG dependencies on APP_EXCEPTION

Line 35: app_exception.raise_exception;

31: X_LAST_UPDATE_LOGIN := -1;
32: end if;
33: else
34: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
35: app_exception.raise_exception;
36: end if;
37: insert into GMS_PERSONNEL (
38: AWARD_ID,
39: PERSON_ID,

Line 101: app_exception.raise_exception;

97: open c1;
98: fetch c1 into tlinfo;
99: if (c1%notfound) then
100: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
101: app_exception.raise_exception;
102: close c1;
103: return;
104: end if;
105: close c1;

Line 123: app_exception.raise_exception;

119: ) then
120: null;
121: else
122: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
123: app_exception.raise_exception;
124: end if;
125: return;
126: end LOCK_ROW;
127:

Line 157: app_exception.raise_exception;

153: X_LAST_UPDATE_LOGIN := -1;
154: end if;
155: else
156: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
157: app_exception.raise_exception;
158: end if;
159: update GMS_PERSONNEL set
160: AWARD_ID = X_AWARD_ID,
161: PERSON_ID = X_PERSON_ID,