DBA Data[Home] [Help]

APPS.HR_CALENDAR_PKG dependencies on HR_UTILITY

Line 198: hr_utility.set_location('Entering:'||l_proc,1);

194: l_proc varchar2 (42) := g_hc_package||'Derive_Pattern_Cycle';
195: --
196: begin
197: --
198: hr_utility.set_location('Entering:'||l_proc,1);
199: --
200: -- Find out which pattern we are dealing with, where within the pattern sequence
201: -- to start the calendar, and what the start date for the pattern is.
202: --

Line 226: hr_utility.set_location(' In:'||l_proc||', rederiving calendar',10);

222: else
223: g_period_from := p_period_from;
224: end if;
225: --
226: hr_utility.set_location(' In:'||l_proc||', rederiving calendar',10);
227: --
228: g_period_to := p_period_to;
229: g_calendar_id := p_calendar_id;
230: index_no := 1;

Line 335: hr_utility.set_location('Leaving :'||l_proc,100);

331: end loop;
332: end loop;
333: end if;
334: --
335: hr_utility.set_location('Leaving :'||l_proc,100);
336: --
337: end derive_pattern_cycle;
338: --------------------------------------------------------------------------------
339: --

Line 981: hr_utility.set_location('Entering:'||l_proc||'. Processing level: '||

977: l_end_date date;
978: --
979: begin
980: --
981: hr_utility.set_location('Entering:'||l_proc||'. Processing level: '||
982: to_char(p_processing_level),1);
983: --
984: if p_processing_level > 0
985: then

Line 1006: -- hr_utility.trace('Schedule rec: '||to_char(this_row) ||

1002: -- Loop through the schedule, adding up the duration of any period during
1003: -- which the availability matches the required availability value.
1004: --
1005: for this_row in 1..schedule_rowcount loop
1006: -- hr_utility.trace('Schedule rec: '||to_char(this_row) ||
1007: -- ' Availability: '||schedule.availability (this_row));
1008: -- hr_utility.trace(' Dates: Start:'||
1009: -- to_char(schedule.start_date (this_row)) || ', End:' ||
1010: -- to_char(schedule.end_date (this_row)));

Line 1008: -- hr_utility.trace(' Dates: Start:'||

1004: --
1005: for this_row in 1..schedule_rowcount loop
1006: -- hr_utility.trace('Schedule rec: '||to_char(this_row) ||
1007: -- ' Availability: '||schedule.availability (this_row));
1008: -- hr_utility.trace(' Dates: Start:'||
1009: -- to_char(schedule.start_date (this_row)) || ', End:' ||
1010: -- to_char(schedule.end_date (this_row)));
1011: --
1012: if schedule.availability (this_row) = p_availability then

Line 1048: hr_utility.set_location('Leaving :'||l_proc||'. Returning '||

1044: end if;
1045: end if;
1046: end loop;
1047: --
1048: hr_utility.set_location('Leaving :'||l_proc||'. Returning '||
1049: substr(to_char(l_total),1,8)||' days.',100);
1050: --
1051: return l_total;
1052: --