DBA Data[Home] [Help]

APPS.JTF_CAL_EXCEPTIONS_PKG dependencies on FND_MSG_PUB

Line 44: fnd_msg_pub.initialize;

40: v_exception_id NUMBER;
41: v_error CHAR := 'N';
42: p_rec NUMBER;
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');

Line 49: fnd_msg_pub.add;

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';
52: END IF;
53:

Line 59: fnd_msg_pub.add;

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';
61: END IF;
62:
63:

Line 69: fnd_msg_pub.add;

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';
71: END IF;
72:
73: IF JTF_CAL_EXCEPTIONS_PKG.END_GREATER_THAN_BEGIN(X_START_DATE_TIME, X_END_DATE_TIME) = FALSE THEN

Line 79: fnd_msg_pub.add;

75: --app_exception.raise_exception;
76: fnd_message.set_name('JTF', 'JTF_CAL_END_DATE');
77: fnd_message.set_token('P_Start_Date', fnd_date.date_to_chardate(dateval=>X_START_DATE_TIME,calendar_aware=>fnd_date.calendar_aware));
78: fnd_message.set_token('P_End_Date', fnd_date.date_to_chardate(dateval=>X_END_DATE_TIME,calendar_aware=>fnd_date.calendar_aware));
79: fnd_msg_pub.add;
80: v_error := 'Y';
81: END IF;
82:
83: -- Code Added by Venkata Putcha for duplictae Exception Names

Line 99: fnd_msg_pub.add;

95: if p_rec > 0 then
96: fnd_message.set_name('JTF', 'JTF_CAL_DUPLICATE');
97: fnd_message.set_token('P_NAME', X_EXCEPTION_NAME);
98:
99: fnd_msg_pub.add;
100: v_error := 'Y';
101: end if;
102: -- Up to Here
103:

Line 375: fnd_msg_pub.initialize;

371:
372: v_error CHAR := 'N';
373: p_rec NUMBER;
374: begin
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;

Line 381: fnd_msg_pub.add;

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';
384: END IF;
385:

Line 391: fnd_msg_pub.add;

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';
393: END IF;
394:
395:

Line 401: fnd_msg_pub.add;

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';
403: END IF;
404:
405: IF JTF_CAL_EXCEPTIONS_PKG.END_GREATER_THAN_BEGIN(X_START_DATE_TIME, X_END_DATE_TIME) = FALSE THEN

Line 411: fnd_msg_pub.add;

407: --app_exception.raise_exception;
408: fnd_message.set_name('JTF', 'JTF_CAL_END_DATE');
409: fnd_message.set_token('P_Start_Date', fnd_date.date_to_chardate(dateval=>X_START_DATE_TIME,calendar_aware=>fnd_date.calendar_aware));
410: fnd_message.set_token('P_End_Date', fnd_date.date_to_chardate(dateval=>X_END_DATE_TIME,calendar_aware=>fnd_date.calendar_aware));
411: fnd_msg_pub.add;
412: v_error := 'Y';
413: END IF;
414:
415:

Line 430: fnd_msg_pub.add;

426:
427: if p_rec > 0 then
428: fnd_message.set_name('JTF', 'JTF_CAL_DUPLICATE');
429: fnd_message.set_token('P_NAME', X_EXCEPTION_NAME);
430: fnd_msg_pub.add;
431: v_error := 'Y';
432: end if;
433:
434: IF v_error = 'Y' THEN