DBA Data[Home] [Help]

APPS.HXC_SECURITY dependencies on HXC_ENTITY_GROUP_COMPS

Line 11: (p_application_set_id in hxc_entity_group_comps.entity_group_id%type)

7: c_sec_offset NUMBER := 1000000;
8: g_debug BOOLEAN := hr_utility.debug_enabled;
9:
10: Function isTimecardForProjects
11: (p_application_set_id in hxc_entity_group_comps.entity_group_id%type)
12: return boolean is
13: cursor c_projects_in_app_set
14: (p_application_set_id in hxc_entity_group_comps.entity_group_id%type)
15: is

Line 14: (p_application_set_id in hxc_entity_group_comps.entity_group_id%type)

10: Function isTimecardForProjects
11: (p_application_set_id in hxc_entity_group_comps.entity_group_id%type)
12: return boolean is
13: cursor c_projects_in_app_set
14: (p_application_set_id in hxc_entity_group_comps.entity_group_id%type)
15: is
16: select 1
17: from hxc_entity_group_comps egc,
18: hxc_time_recipients tr

Line 17: from hxc_entity_group_comps egc,

13: cursor c_projects_in_app_set
14: (p_application_set_id in hxc_entity_group_comps.entity_group_id%type)
15: is
16: select 1
17: from hxc_entity_group_comps egc,
18: hxc_time_recipients tr
19: where egc.entity_group_id = p_application_set_id
20: and egc.entity_id = tr.time_recipient_id
21: and tr.name = 'Projects';