DBA Data[Home] [Help]

APPS.JTF_CALENDARS_PKG dependencies on FND_MSG_PUB

Line 43: fnd_msg_pub.initialize;

39: v_calendar_id NUMBER;
40:
41: temp_count number := 0;
42: begin
43: fnd_msg_pub.initialize;
44:
45: IF JTF_CALENDARS_PKG.NOT_NULL(X_CALENDAR_NAME) = FALSE THEN
46: fnd_message.set_name('JTF', 'JTF_CAL_CALENDAR_NAME');
47: --fnd_message.set_token('P_NAME', nvl(X_CALENDAR_NAME,'Calendar Name '));

Line 48: fnd_msg_pub.add;

44:
45: IF JTF_CALENDARS_PKG.NOT_NULL(X_CALENDAR_NAME) = FALSE THEN
46: fnd_message.set_name('JTF', 'JTF_CAL_CALENDAR_NAME');
47: --fnd_message.set_token('P_NAME', nvl(X_CALENDAR_NAME,'Calendar Name '));
48: fnd_msg_pub.add;
49: v_error := 'Y';
50: END IF;
51:
52: IF JTF_CALENDARS_PKG.NOT_NULL(X_CALENDAR_TYPE) = FALSE THEN

Line 55: fnd_msg_pub.add;

51:
52: IF JTF_CALENDARS_PKG.NOT_NULL(X_CALENDAR_TYPE) = FALSE THEN
53: fnd_message.set_name('JTF', 'JTF_CAL_CALENDAR_TYPE');
54: --fnd_message.set_token('P_NAME', nvl(X_CALENDAR_TYPE,'Calendar Type '));
55: fnd_msg_pub.add;
56: v_error := 'Y';
57: END IF;
58:
59:

Line 74: fnd_msg_pub.add;

70:
71: IF temp_count > 0 THEN
72: fnd_message.set_name('JTF', 'JTF_CAL_DUP_NAME');
73: fnd_message.set_token('P_NAME', X_CALENDAR_NAME);
74: fnd_msg_pub.add;
75: v_error := 'Y';
76: END IF;
77:
78:

Line 82: fnd_msg_pub.add;

78:
79: IF JTF_CALENDARS_PKG.NOT_NULL(X_START_DATE_ACTIVE) = FALSE THEN
80:
81: fnd_message.set_name('JTF', 'JTF_CAL_START_DATE');
82: fnd_msg_pub.add;
83:
84: v_error := 'Y';
85: END IF;
86:

Line 92: fnd_msg_pub.add;

88: IF JTF_CALENDARS_PKG.END_GREATER_THAN_BEGIN(X_START_DATE_ACTIVE, X_END_DATE_ACTIVE) = FALSE THEN
89: fnd_message.set_name('JTF', 'JTF_CAL_END_DATE');
90: fnd_message.set_token('P_Start_Date', fnd_date.date_to_chardate(dateval=>X_START_DATE_ACTIVE,calendar_aware=>fnd_date.calendar_aware));
91: fnd_message.set_token('P_End_Date', fnd_date.date_to_chardate(dateval=>X_END_DATE_ACTIVE,calendar_aware=>fnd_date.calendar_aware));
92: fnd_msg_pub.add;
93: v_error := 'Y';
94: END IF;
95:
96: IF v_error = 'Y' THEN

Line 371: fnd_msg_pub.initialize;

367: v_start_date DATE;
368: temp_count NUMBER := 0;
369:
370: begin
371: fnd_msg_pub.initialize;
372:
373: IF JTF_CALENDARS_PKG.NOT_NULL(X_CALENDAR_NAME) = FALSE THEN
374: fnd_message.set_name('JTF', 'JTF_CAL_CALENDAR_NAME');
375: --fnd_message.set_token('P_NAME', nvl(X_CALENDAR_NAME,'Calendar Name '));

Line 376: fnd_msg_pub.add;

372:
373: IF JTF_CALENDARS_PKG.NOT_NULL(X_CALENDAR_NAME) = FALSE THEN
374: fnd_message.set_name('JTF', 'JTF_CAL_CALENDAR_NAME');
375: --fnd_message.set_token('P_NAME', nvl(X_CALENDAR_NAME,'Calendar Name '));
376: fnd_msg_pub.add;
377: v_error := 'Y';
378: END IF;
379:
380: IF JTF_CALENDARS_PKG.NOT_NULL(X_CALENDAR_TYPE) = FALSE THEN

Line 383: fnd_msg_pub.add;

379:
380: IF JTF_CALENDARS_PKG.NOT_NULL(X_CALENDAR_TYPE) = FALSE THEN
381: fnd_message.set_name('JTF', 'JTF_CAL_CALENDAR_TYPE');
382: --fnd_message.set_token('P_NAME', nvl(X_CALENDAR_TYPE,'Calendar Type '));
383: fnd_msg_pub.add;
384: v_error := 'Y';
385: END IF;
386:
387: IF v_error <> 'Y' THEN

Line 405: fnd_msg_pub.add;

401:
402: IF temp_count > 0 THEN
403: fnd_message.set_name('JTF', 'JTF_CAL_DUP_NAME');
404: fnd_message.set_token('P_NAME', X_CALENDAR_NAME);
405: fnd_msg_pub.add;
406: v_error := 'Y';
407: END IF;
408: END IF;
409: IF JTF_CALENDARS_PKG.NOT_NULL(X_START_DATE_ACTIVE) = FALSE THEN

Line 412: fnd_msg_pub.add;

408: END IF;
409: IF JTF_CALENDARS_PKG.NOT_NULL(X_START_DATE_ACTIVE) = FALSE THEN
410:
411: fnd_message.set_name('JTF', 'JTF_CAL_START_DATE');
412: fnd_msg_pub.add;
413:
414: v_error := 'Y';
415: END IF;
416:

Line 422: fnd_msg_pub.add;

418: IF JTF_CALENDARS_PKG.END_GREATER_THAN_BEGIN(X_START_DATE_ACTIVE, X_END_DATE_ACTIVE) = FALSE THEN
419: fnd_message.set_name('JTF', 'JTF_CAL_END_DATE');
420: fnd_message.set_token('P_Start_Date', fnd_date.date_to_chardate(dateval=>X_START_DATE_ACTIVE,calendar_aware=>fnd_date.calendar_aware));
421: fnd_message.set_token('P_End_Date', fnd_date.date_to_chardate(dateval=>X_END_DATE_ACTIVE,calendar_aware=>fnd_date.calendar_aware));
422: fnd_msg_pub.add;
423: v_error := 'Y';
424: END IF;
425:
426: IF v_error = 'Y' THEN