Search Results mobile_number




Overview

APPS.JTF_RS_EMP_ADDRESS_VL is a public Oracle E-Business Suite view owned by the APPS schema. It exposes employee address information — including home address, office location, telephone numbers, and e-mail — in a flattened, report-friendly structure. The _VL suffix identifies it as a "value list" style view, which in EBS typically denotes a view built from a translated or joined base table and commonly surfaced through descriptive flexfields, LOVs, or resource-management lookups. Because the view is documented as public, it is explicitly sanctioned for custom reporting and other read-only data requirements, avoiding the need for developers to build their own joins across the underlying HR tables. A user searching for the column keyword home_city will find it exposed directly here, making this view the appropriate entry point when an employee's city of residence is required. In 12.1.1 and 12.2.2 the object remains VALID and is registered under FND Design Data as JTF.JTF_RS_EMP_ADDRESS_VL.

Underlying Base Objects

The view is defined over the following documented base objects:

  • PER_ADDRESSES (SYNONYM) — source of street address, city, country, and postal code attributes.
  • PER_PEOPLE_F (VIEW) — the date-tracked person record supplying PERSON_ID and the link to the business group; _F denotes the effective-dated (date-tracked) table structure.
  • PER_PHONES (SYNONYM) — source of home, office, fax, pager, and mobile numbers.
  • HR_GENERAL (PACKAGE) — HR utility functions used to resolve descriptive values.
  • HR_PERSON_NAME (PACKAGE) — resolves the employee's formatted name.
  • HR_SECURITY (PACKAGE) — applies the HR security profile, restricting rows to the employees a given responsibility is permitted to see.

No database object references this view; it is a terminal, read-only presentation layer. The involvement of HR_SECURITY is significant: query results are filtered by the security profile of the connected user, so a report executed under a restricted responsibility returns only authorized employees.

Key Columns

Common Use Cases and Queries

Typical uses include employee contact directories, mailing-label or emergency-contact reports, and data extracts for downstream systems. The view is also convenient for ad-hoc lookups of a single employee's residence city.

Standard retrieval:

  • SELECT PERSON_ID, HOME_CITY, HOME_STREET_ADDRESS, HOME_COUNTRY, HOME_POSTAL_CODE, HOME_PHONE_NUMBER FROM APPS.JTF_RS_EMP_ADDRESS_VL;
  • SELECT PERSON_ID, HOME_CITY, EMAIL_ADDRESS FROM APPS.JTF_RS_EMP_ADDRESS_VL WHERE UPPER(HOME_CITY) = UPPER(:p_city);
  • SELECT PERSON_ID, HOME_CITY, BUSINESS_GROUP_ID FROM APPS.JTF_RS_EMP_ADDRESS_VL WHERE BUSINESS_GROUP_ID = :p_bg_id ORDER BY HOME_CITY;

Because HR_SECURITY governs row visibility, custom code should never assume an unrestricted result set; run reports under an appropriate HR responsibility or grant the required security profile to the executing user.