DBA Data[Home] [Help]

APPS.JTF_CALENDAR_PUB dependencies on DUAL

Line 2238: from dual;

2234: where calendar_id = l_calendar_id;
2235:
2236: select mod((l_shift_date - l_calendar_start_date),l_shifts_total_duration)
2237: into l_left_days
2238: from dual;
2239:
2240: l_shift_id := null;
2241: for c in shift_info(l_calendar_id) loop
2242: l_left_days := l_left_days - c.shift_duration;

Line 2253: from dual;

2249: -- Find the day of the Requested Date
2250: --
2251: select to_char(l_shift_date, 'd')
2252: into l_unit_of_time_value
2253: from dual;
2254: --
2255: -- Find the working hours on the Requested day
2256: --
2257: --FOR c1 in work_hrs(l_shift_id, l_unit_of_time_value) LOOP