DBA Data[Home] [Help]

APPS.HXC_FIND_NOTIFY_APRS_PKG dependencies on HR_GENERAL

Line 60: htb_time.date_to = hr_general.end_of_time

56: htb_time.resource_id = htb_appln.resource_id AND
57: htb_time.start_time <= htb_appln.stop_time AND
58: htb_time.stop_time >= htb_appln.start_time AND
59: htb_time.scope = 'TIMECARD' AND
60: htb_time.date_to = hr_general.end_of_time
61: AND
62: aps.approval_style_id = htb_time.approval_style_id
63: AND
64: apc.approval_style_id = aps.approval_style_id AND

Line 525: and refapps.date_to = hr_general.end_of_time

521: from hxc_time_building_blocks apps
522: ,hxc_time_building_blocks refapps
523: where refapps.resource_id = apps.resource_id
524: and refapps.scope = apps.scope
525: and refapps.date_to = hr_general.end_of_time
526: and refapps.start_time <= apps.stop_time
527: and refapps.stop_time >= apps.start_time
528: and ((refapps.time_building_block_id <> apps.time_building_block_id)
529: OR

Line 569: AND date_to = hr_general.end_of_time

565: SELECT time_building_block_id
566: FROM hxc_time_building_blocks
567: WHERE scope = 'APPLICATION_PERIOD'
568: AND resource_id = p_resource_id
569: AND date_to = hr_general.end_of_time
570: AND TRUNC(start_time) <= TRUNC(p_tc_stop_time)
571: AND TRUNC(stop_time) >= TRUNC(p_tc_start_time);
572:
573:

Line 799: and tbb.date_to = hr_general.end_of_time

795: AND apsum.application_period_ovn = p_application_period_ovn
796: and apsum.application_period_id = tcl.application_period_id
797: and tcl.timecard_id = tbb.time_building_block_id
798: and tbb.scope = 'TIMECARD'
799: and tbb.date_to = hr_general.end_of_time
800: and tbb.approval_style_id = apc.approval_style_id
801: and apsum.time_recipient_id = apc.time_recipient_id;
802:
803: CURSOR c_tc_info(

Line 1388: AND htbb.date_to = hr_general.end_of_time

1384: ,hxc_time_attribute_usages htau
1385: ,hxc_time_attributes hta
1386: WHERE apdet.application_period_id = p_ap_bb_id
1387: AND apdet.time_building_block_id = htbb.time_building_block_id
1388: AND htbb.date_to = hr_general.end_of_time
1389: AND htbb.time_building_block_id = htau.time_building_block_id
1390: AND htbb.object_version_number = htau.time_building_block_ovn
1391: AND htau.time_attribute_id = hta.time_attribute_id
1392: AND hta.attribute_category = 'PROJECTS';

Line 1408: and details.date_to <> hr_general.end_of_time

1404: and aps.stop_time >= days.start_time
1405: and aps.resource_id = days.resource_Id
1406: and details.parent_building_block_Id = days.time_building_block_id
1407: and details.parent_building_block_ovn = days.object_version_number
1408: and details.date_to <> hr_general.end_of_time
1409: and details.object_version_number =
1410: (select max(details2.object_version_number)
1411: from hxc_time_building_blocks details2
1412: where details.time_building_block_id = details2.time_building_block_id)

Line 1737: tbb.date_to = hr_general.end_of_time;

1733: WHERE adl.APPLICATION_PERIOD_ID = p_app_per_id
1734: AND
1735: tbb.time_building_block_id = adl.time_building_block_id AND
1736: tbb.object_version_number = adl.time_building_block_ovn AND
1737: tbb.date_to = hr_general.end_of_time;
1738:
1739: CURSOR csr_get_person_id(p_app_per_id NUMBER) IS
1740: SELECT resource_id
1741: FROM hxc_time_building_blocks tbb

Line 1861: and details.date_to = hr_general.end_of_time

1857: where timecard.time_building_block_id = days.parent_building_block_id
1858: and timecard.object_version_number = days.parent_building_block_ovn
1859: and days.time_building_block_id = details.parent_building_block_id
1860: and days.object_version_number = details.parent_building_block_ovn
1861: and details.date_to = hr_general.end_of_time
1862: and days.start_time <=p_end_date
1863: and days.stop_time >= p_start_date
1864: and days.resource_id = p_resource_id
1865: and details.scope = 'DETAIL'