DBA Data[Home] [Help]

APPS.HZ_EXTRACT_MERGE_EVENT_PKG dependencies on HR_OPERATING_UNITS

Line 47: FROM hr_operating_units

43: FUNCTION get_operating_unit( p_org_id NUMBER) RETURN VARCHAR2 IS
44: l_operating_unit VARCHAR2(240);
45: BEGIN
46: SELECT name INTO l_operating_unit
47: FROM hr_operating_units
48: WHERE organization_id = p_org_id;
49:
50: return l_operating_unit;
51: