Search Results zip_code
Overview
HRFV_US_ADDRESSES is a business view template owned by the APPS schema in Oracle E-Business Suite, delivered under the PER (Human Resources) product family. As its description states, it is a "business view template from which the flexfield view is generated" — meaning it serves as the definition layer for a generated descriptive flexfield (DFF) view rather than as an end-user-facing object in its own right. The view presents United States–style person addresses held in Oracle HRMS, joining address, person, person type, and business group information into a single reporting structure, and it is statused VALID in both 12.1.1 and 12.2.2.
Because it is a template, the underlying DFF reference _DF:PER:PER_ADDRESSES:ADDR appears in the projection, tying the generated view to the PER_ADDRESSES descriptive flexfield. Its principal role is to support Oracle Business Intelligence and HRMS reporting and integration scenarios in which US address data must be retrieved with decoded, user-meaningful values.
Underlying Base Objects
The documented referenced base objects reflect the view's join path. Data originates from the PER_ADDRESSES synonym (the address records), filtered to STYLE = 'US'. Person identity is supplied by the PER_PEOPLE_X view, while person types come from the PER_PERSON_TYPES_TL synonym. Organization/business group naming is resolved through HR_ALL_ORGANIZATION_UNITS_TL. Decoding of lookup values is performed by the HR_BIS package (via BIS_DECODE_LOOKUP), and security is applied through the HR_BIS security profile function and the related HR_SECURITY and HR_GENERAL packages. FND_TERRITORIES_TL, HRI_BPL_PERSON_TYPE, and HR_PERSON_NAME are also documented as dependencies supporting territory, person type, and name resolution.
Key Columns
- BUSINESS_GROUP_NAME — organization name of the business group owning the address.
- PERSON_NAME / PERSON_ID / EMPLOYEE_NUMBER — the person's full name, identifier, and employee number.
- ADDRESS_STYLE / ADDRESS_TYPE / PRIMARY_FLAG — style indicator (US), decoded address type, and decoded primary-address flag.
- STATE_NAME — the column most relevant to the search term: decoded from REGION_2 using
HR_BIS.BIS_DECODE_LOOKUP('US_STATE', ADDR.REGION_2), returning the full state description, while STATE_CODE holds the raw region value. - COUNTY / CITY / ZIP_CODE — REGION_1, TOWN_OR_CITY, and POSTAL_CODE respectively.
- ADDRESS_LINE1–3, ADDR_COMMENTS — street-level address details.
- ADDR_DATE_FROM / ADDR_DATE_TO — address validity range; the WHERE clause restricts results to rows active as of
TRUNC(SYSDATE). - PERSON_TYPE — user person type name.
Common Use Cases and Queries
Typical use is projecting current US addresses with decoded state names for reporting, extracts, or integrations. Note that the view already filters on the effective date and security profile:
SELECT person_name,
employee_number,
state_name,
city,
zip_code
FROM apps.hrfv_us_addresses
WHERE state_name = 'California';
Because STATE_NAME is decoded in the view, filtering on it avoids clients hard-coding the US_STATE lookup translation. A second scenario lists primary addresses per business group using the decoded primary flag:
SELECT business_group_name,
person_name,
address_line1,
city,
state_code,
state_name
FROM apps.hrfv_us_addresses
WHERE primary_flag = 'Yes'
ORDER BY business_group_name, person_name;
Finally, person type and applicant/employee status can be combined for HR extracts:
SELECT person_type,
COUNT(*)
FROM apps.hrfv_us_addresses
WHERE current_employee_flag = 'Yes'
GROUP BY person_type;
As a template-generated DFF view, HRFV_US_ADDRESSES should be treated as read-only (WITH READ ONLY) and referenced through the APPS synonym in custom SQL.
-
View: HRFV_US_ADDRESSES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_ADDRESSES, object_name:HRFV_US_ADDRESSES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_ADDRESSES ,
-
View: HRFV_US_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_LOCATIONS, object_name:HRFV_US_LOCATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_LOCATIONS ,
-
View: HRFV_US_ADDRESSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_ADDRESSES, object_name:HRFV_US_ADDRESSES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_ADDRESSES ,
-
View: HRFV_US_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_LOCATIONS, object_name:HRFV_US_LOCATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_LOCATIONS ,
-
View: HR_ADP_ADDRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_ADDRESS_V, object_name:HR_ADP_ADDRESS_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_ADDRESS_V ,
-
View: HR_ADP_ADDRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_ADDRESS_V, object_name:HR_ADP_ADDRESS_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_ADDRESS_V ,
-
View: HR_TAX_UNITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_TAX_UNITS_V, object_name:HR_TAX_UNITS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_TAX_UNITS_V ,
-
View: HR_TAX_UNITS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_TAX_UNITS_V, object_name:HR_TAX_UNITS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_TAX_UNITS_V ,
-
View: HR_CERIDIAN_500_EMPLOYEE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_500_EMPLOYEE_V, object_name:HR_CERIDIAN_500_EMPLOYEE_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 500 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_500_EMPLOYEE_V ,
-
View: HR_CERIDIAN_500_EMPLOYEE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_500_EMPLOYEE_V, object_name:HR_CERIDIAN_500_EMPLOYEE_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 500 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_500_EMPLOYEE_V ,
-
View: HR_CERIDIAN_EMPLOYEE_ONLY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_EMPLOYEE_ONLY_V, object_name:HR_CERIDIAN_EMPLOYEE_ONLY_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_EMPLOYEE_ONLY_V ,
-
View: HR_ADP_EMPLOYEE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_EMPLOYEE_V, object_name:HR_ADP_EMPLOYEE_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_EMPLOYEE_V ,
-
View: HR_CERIDIAN_EMPLOYEE_ONLY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_EMPLOYEE_ONLY_V, object_name:HR_CERIDIAN_EMPLOYEE_ONLY_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_EMPLOYEE_ONLY_V ,
-
View: HR_ADP_EMPLOYEE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_EMPLOYEE_V, object_name:HR_ADP_EMPLOYEE_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_EMPLOYEE_V ,