DBA Data[Home] [Help]

APPS.HR_NO_UTILITY dependencies on HR_LOOKUPS

Line 303: from HR_SOFT_CODING_KEYFLEX scl, hr_lookups lookups

299: where assignment_id = p_assignment_id;
300:
301: cursor get_info_from_scl is
302: select lookups.meaning
303: from HR_SOFT_CODING_KEYFLEX scl, hr_lookups lookups
304: where scl.SOFT_CODING_KEYFLEX_ID = l_scl_id
305: and lookups.lookup_type=l_information_code
306: and lookups.enabled_flag = 'Y'
307: and lookups.lookup_code = decode(l_information_code,'NO_JOB_STATUS',scl.segment5,

Line 316: from hr_organization_units hou, hr_organization_information hoi , hr_lookups lookups

312: 'NO_AGREED_WORKING_HOURS',scl.segment10,null);
313:
314: cursor get_info_from_org is
315: select lookups.meaning
316: from hr_organization_units hou, hr_organization_information hoi , hr_lookups lookups
317: where hou.organization_id = l_organization_id
318: and hou.organization_id = hoi.organization_id
319: and hoi.org_information_context = 'NO_EMPLOYMENT_DEFAULTS'
320: and lookups.lookup_type = l_information_code

Line 345: from hr_organization_information hoi , hr_lookups lookups

341:
342:
343: cursor get_info_from_local_unit is
344: select lookups.meaning
345: from hr_organization_information hoi , hr_lookups lookups
346: where hoi.organization_id = l_org_id
347: and hoi.org_information_context = 'NO_EMPLOYMENT_DEFAULTS'
348: and lookups.lookup_type = l_information_code
349: and lookups.enabled_flag = 'Y'