DBA Data[Home] [Help]

APPS.QP_UTIL dependencies on HR_OPERATING_UNITS

Line 5086: FROM hr_operating_units hr

5082: BEGIN
5083: /*
5084: SELECT 'X'
5085: INTO l_dummy
5086: FROM hr_operating_units hr
5087: WHERE hr.organization_id = p_org_id
5088: AND MO_GLOBAL.check_access(hr.organization_id) = 'Y';
5089: */
5090: l_dummy := MO_GLOBAL.check_access(p_org_id);

Line 5112: from hr_operating_units

5108: BEGIN
5109: IF p_org_id IS NOT NULL THEN
5110: select name
5111: into l_operating_unit
5112: from hr_operating_units
5113: where organization_id = p_org_id;
5114: END IF;
5115: return l_operating_unit;
5116: EXCEPTION