DBA Data[Home] [Help]

APPS.HR_CAL_BUS dependencies on HR_UTILITY

Line 34: hr_utility.trace ('Entering '||l_proc);

30: l_dummy integer (1);
31: --
32: begin
33: --
34: hr_utility.trace ('Entering '||l_proc);
35: --
36: hr_api.mandatory_arg_error
37: (p_api_name => l_proc,
38: p_argument => 'calendar name',

Line 63: hr_utility.trace ('Leaving '||l_proc);

59: end if;
60: --
61: end if;
62: --
63: hr_utility.trace ('Leaving '||l_proc);
64: --
65: end chk_calendar_name;
66: -- ----------------------------------------------------------------------------
67: -- |---------------------------< CHK_PATTERN_START_POSITION >-----------------|

Line 87: hr_utility.trace ('Entering '||l_proc);

83: l_proc varchar2(72) := g_package||'chk_pattern_start_position';
84: --
85: begin
86: --
87: hr_utility.trace ('Entering '||l_proc);
88: --
89: hr_api.mandatory_arg_error
90: (p_api_name => l_proc,
91: p_argument => 'pattern_id',

Line 119: hr_utility.set_message(801, 'HR_51060_PAY_START_POSITION');

115: if p_pattern_start_position > l_construction_rows then
116: --
117: -- The start position is invalid
118: --
119: hr_utility.set_message(801, 'HR_51060_PAY_START_POSITION');
120: hr_utility.set_message_token ('MAXIMUM',to_char (l_construction_rows));
121: hr_utility.raise_error;
122: --
123: end if;

Line 120: hr_utility.set_message_token ('MAXIMUM',to_char (l_construction_rows));

116: --
117: -- The start position is invalid
118: --
119: hr_utility.set_message(801, 'HR_51060_PAY_START_POSITION');
120: hr_utility.set_message_token ('MAXIMUM',to_char (l_construction_rows));
121: hr_utility.raise_error;
122: --
123: end if;
124: --

Line 121: hr_utility.raise_error;

117: -- The start position is invalid
118: --
119: hr_utility.set_message(801, 'HR_51060_PAY_START_POSITION');
120: hr_utility.set_message_token ('MAXIMUM',to_char (l_construction_rows));
121: hr_utility.raise_error;
122: --
123: end if;
124: --
125: hr_utility.trace ('Leaving '||l_proc);

Line 125: hr_utility.trace ('Leaving '||l_proc);

121: hr_utility.raise_error;
122: --
123: end if;
124: --
125: hr_utility.trace ('Leaving '||l_proc);
126: --
127: end chk_pattern_start_position;
128: -- ----------------------------------------------------------------------------
129: -- |---------------------------< CHK_CALENDAR_START_TIME >--------------------|

Line 233: hr_utility.trace ('Entering '||l_proc);

229: end check_parameters;
230: --
231: begin
232: --
233: hr_utility.trace ('Entering '||l_proc);
234: --
235: check_parameters;
236: --
237: -- Get the pattern details

Line 279: hr_utility.set_message (801, 'HR_51062_CAL_START_WEEKDAY');

275: --
276: if l_weekday <> l_pattern.pattern_start_weekday then
277: --
278: -- The calendar does not start on the correct weekday
279: hr_utility.set_message (801, 'HR_51062_CAL_START_WEEKDAY');
280: hr_utility.set_message_token ('WEEKDAY',l_pattern.pattern_start_weekday);
281: hr_utility.raise_error;
282: --
283: elsif l_time <> l_pattern.pattern_start_time then

Line 280: hr_utility.set_message_token ('WEEKDAY',l_pattern.pattern_start_weekday);

276: if l_weekday <> l_pattern.pattern_start_weekday then
277: --
278: -- The calendar does not start on the correct weekday
279: hr_utility.set_message (801, 'HR_51062_CAL_START_WEEKDAY');
280: hr_utility.set_message_token ('WEEKDAY',l_pattern.pattern_start_weekday);
281: hr_utility.raise_error;
282: --
283: elsif l_time <> l_pattern.pattern_start_time then
284: --

Line 281: hr_utility.raise_error;

277: --
278: -- The calendar does not start on the correct weekday
279: hr_utility.set_message (801, 'HR_51062_CAL_START_WEEKDAY');
280: hr_utility.set_message_token ('WEEKDAY',l_pattern.pattern_start_weekday);
281: hr_utility.raise_error;
282: --
283: elsif l_time <> l_pattern.pattern_start_time then
284: --
285: -- The calendar does not start at the correct time of day

Line 286: hr_utility.set_message (801, 'HR_51063_CAL_START_TIME');

282: --
283: elsif l_time <> l_pattern.pattern_start_time then
284: --
285: -- The calendar does not start at the correct time of day
286: hr_utility.set_message (801, 'HR_51063_CAL_START_TIME');
287: hr_utility.set_message_token ('START_TIME',l_pattern.pattern_start_time);
288: hr_utility.raise_error;
289: --
290: end if;

Line 287: hr_utility.set_message_token ('START_TIME',l_pattern.pattern_start_time);

283: elsif l_time <> l_pattern.pattern_start_time then
284: --
285: -- The calendar does not start at the correct time of day
286: hr_utility.set_message (801, 'HR_51063_CAL_START_TIME');
287: hr_utility.set_message_token ('START_TIME',l_pattern.pattern_start_time);
288: hr_utility.raise_error;
289: --
290: end if;
291: --

Line 288: hr_utility.raise_error;

284: --
285: -- The calendar does not start at the correct time of day
286: hr_utility.set_message (801, 'HR_51063_CAL_START_TIME');
287: hr_utility.set_message_token ('START_TIME',l_pattern.pattern_start_time);
288: hr_utility.raise_error;
289: --
290: end if;
291: --
292: hr_utility.trace ('Leaving '||l_proc);

Line 292: hr_utility.trace ('Leaving '||l_proc);

288: hr_utility.raise_error;
289: --
290: end if;
291: --
292: hr_utility.trace ('Leaving '||l_proc);
293: --
294: end chk_calendar_start_time;
295: -- ----------------------------------------------------------------------------
296: -- |---------------------------< insert_validate >----------------------------|

Line 303: hr_utility.set_location('Entering:'||l_proc, 5);

299: --
300: l_proc varchar2(72) := g_package||'insert_validate';
301: --
302: Begin
303: hr_utility.set_location('Entering:'||l_proc, 5);
304: --
305: -- Call all supporting business operations
306: --
307: chk_pattern_start_position ( p_rec.pattern_start_position,

Line 316: hr_utility.set_location(' Leaving:'||l_proc, 10);

312: p_pattern_id => p_rec.pattern_id);
313: --
314: chk_calendar_name (p_rec.calendar_name);
315: --
316: hr_utility.set_location(' Leaving:'||l_proc, 10);
317: --
318: End insert_validate;
319: --
320: -- ----------------------------------------------------------------------------

Line 328: hr_utility.set_location('Entering:'||l_proc, 5);

324: --
325: l_proc varchar2(72) := g_package||'update_validate';
326: --
327: Begin
328: hr_utility.set_location('Entering:'||l_proc, 5);
329: --
330: -- Call all supporting business operations
331: --
332: chk_calendar_name (p_calendar_name => p_rec.calendar_name,

Line 337: hr_utility.set_location(' Leaving:'||l_proc, 10);

333: p_calendar_id => p_rec.calendar_id,
334: p_object_version_number => p_rec.object_version_number);
335: --
336: --
337: hr_utility.set_location(' Leaving:'||l_proc, 10);
338: End update_validate;
339: --
340: -- ----------------------------------------------------------------------------
341: -- |---------------------------< delete_validate >----------------------------|

Line 348: hr_utility.set_location('Entering:'||l_proc, 5);

344: --
345: l_proc varchar2(72) := g_package||'delete_validate';
346: --
347: Begin
348: hr_utility.set_location('Entering:'||l_proc, 5);
349: --
350: -- Call all supporting business operations
351: --
352: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 352: hr_utility.set_location(' Leaving:'||l_proc, 10);

348: hr_utility.set_location('Entering:'||l_proc, 5);
349: --
350: -- Call all supporting business operations
351: --
352: hr_utility.set_location(' Leaving:'||l_proc, 10);
353: End delete_validate;
354: --
355: end hr_cal_bus;