DBA Data[Home] [Help]

APPS.JTF_CAL_EXCEPTIONS_PKG dependencies on APP_EXCEPTION

Line 47: --app_exception.raise_exception;

43: begin
44: fnd_msg_pub.initialize;
45: IF JTF_CAL_EXCEPTIONS_PKG.NOT_NULL(X_START_DATE_TIME) = FALSE THEN
46: --fnd_message.set_name('JTF', 'START_DATE CANNOT BE NULL');
47: --app_exception.raise_exception;
48: fnd_message.set_name('JTF', 'JTF_CAL_START_DATE');
49: fnd_msg_pub.add;
50:
51: v_error := 'Y';

Line 56: --app_exception.raise_exception;

52: END IF;
53:
54: IF JTF_CAL_EXCEPTIONS_PKG.NOT_NULL(X_EXCEPTION_CATEGORY) = FALSE THEN
55: --fnd_message.set_name('JTF', 'EXCEPTION CATEGORY CANNOT BE NULL');
56: --app_exception.raise_exception;
57: fnd_message.set_name('JTF', 'JTF_CAL_EXCEPTION_CATEGORY');
58: --fnd_message.set_token('P_Name', 'EXCEPTION_CATEGORY');
59: fnd_msg_pub.add;
60: v_error := 'Y';

Line 66: --app_exception.raise_exception;

62:
63:
64: IF JTF_CAL_EXCEPTIONS_PKG.NOT_NULL(X_EXCEPTION_NAME) = FALSE THEN
65: --fnd_message.set_name('JTF', 'EXCEPTION NAME CANNOT BE NULL');
66: --app_exception.raise_exception;
67: fnd_message.set_name('JTF', 'JTF_CAL_EXCEPTION_NAME');
68: --fnd_message.set_token('P_Name', 'EXCEPTION_NAME');
69: fnd_msg_pub.add;
70: v_error := 'Y';

Line 75: --app_exception.raise_exception;

71: END IF;
72:
73: IF JTF_CAL_EXCEPTIONS_PKG.END_GREATER_THAN_BEGIN(X_START_DATE_TIME, X_END_DATE_TIME) = FALSE THEN
74: --fnd_message.set_name('JTF', 'END_DATE IS INCORRECT');
75: --app_exception.raise_exception;
76: fnd_message.set_name('JTF', 'JTF_CAL_END_DATE');
77: fnd_message.set_token('P_Start_Date', X_START_DATE_TIME);
78: fnd_message.set_token('P_End_Date', X_END_DATE_TIME);
79: fnd_msg_pub.add;

Line 276: app_exception.raise_exception;

272: fetch c into recinfo;
273: if (c%notfound) then
274: close c;
275: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
276: app_exception.raise_exception;
277: end if;
278: close c;
279:
280:

Line 322: app_exception.raise_exception;

318: ) then
319: null;
320: else
321: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
322: app_exception.raise_exception;
323: end if;
324:
325: for tlinfo in c1 loop
326: if (tlinfo.BASELANG = 'Y') then

Line 335: app_exception.raise_exception;

331: ) then
332: null;
333: else
334: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
335: app_exception.raise_exception;
336: end if;
337: end if;
338: end loop;
339: return;

Line 379: --app_exception.raise_exception;

375: fnd_msg_pub.initialize;
376:
377: IF JTF_CAL_EXCEPTIONS_PKG.NOT_NULL(X_START_DATE_TIME) = FALSE THEN
378: --fnd_message.set_name('JTF', 'START_DATE CANNOT BE NULL');
379: --app_exception.raise_exception;
380: fnd_message.set_name('JTF', 'JTF_CAL_START_DATE');
381: fnd_msg_pub.add;
382:
383: v_error := 'Y';

Line 388: --app_exception.raise_exception;

384: END IF;
385:
386: IF JTF_CAL_EXCEPTIONS_PKG.NOT_NULL(X_EXCEPTION_CATEGORY) = FALSE THEN
387: --fnd_message.set_name('JTF', 'EXCEPTION CATEGORY CANNOT BE NULL');
388: --app_exception.raise_exception;
389: fnd_message.set_name('JTF', 'JTF_CAL_EXCEPTION_CATEGORY');
390: --fnd_message.set_token('P_Name', 'EXCEPTION_CATEGORY');
391: fnd_msg_pub.add;
392: v_error := 'Y';

Line 398: --app_exception.raise_exception;

394:
395:
396: IF JTF_CAL_EXCEPTIONS_PKG.NOT_NULL(X_EXCEPTION_NAME) = FALSE THEN
397: --fnd_message.set_name('JTF', 'EXCEPTION NAME CANNOT BE NULL');
398: --app_exception.raise_exception;
399: fnd_message.set_name('JTF', 'JTF_CAL_EXCEPTION_NAME');
400: --fnd_message.set_token('P_Name', 'EXCEPTION_NAME');
401: fnd_msg_pub.add;
402: v_error := 'Y';

Line 407: --app_exception.raise_exception;

403: END IF;
404:
405: IF JTF_CAL_EXCEPTIONS_PKG.END_GREATER_THAN_BEGIN(X_START_DATE_TIME, X_END_DATE_TIME) = FALSE THEN
406: --fnd_message.set_name('JTF', 'END_DATE IS INCORRECT');
407: --app_exception.raise_exception;
408: fnd_message.set_name('JTF', 'JTF_CAL_END_DATE');
409: fnd_message.set_token('P_Start_Date', X_START_DATE_TIME);
410: fnd_message.set_token('P_End_Date', X_END_DATE_TIME);
411: fnd_msg_pub.add;