DBA Data[Home] [Help]

APPS.GMS_REPORT_TEMPLATES_PKG dependencies on APP_EXCEPTION

Line 52: app_exception.raise_exception;

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

Line 186: app_exception.raise_exception;

182: open c1;
183: fetch c1 into tlinfo;
184: if (c1%notfound) then
185: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
186: app_exception.raise_exception;
187: close c1;
188: return;
189: end if;
190: close c1;

Line 261: app_exception.raise_exception;

257: ) then
258: null;
259: else
260: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
261: app_exception.raise_exception;
262: end if;
263: return;
264: end LOCK_ROW;
265:

Line 312: app_exception.raise_exception;

308: X_LAST_UPDATE_LOGIN := -1;
309: end if;
310: else
311: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
312: app_exception.raise_exception;
313: end if;
314: update GMS_REPORT_TEMPLATES set
315: REPORT_NAME = X_REPORT_NAME,
316: TYPE = X_TYPE,