Search Results hr_organization_information
Overview
The HR_ORGANIZATION_INFORMATION table is a core data structure within the Oracle E-Business Suite Human Resources (PER) module, specifically for versions 12.1.1 and 12.2.2. It functions as a flexible extension table designed to store additional, context-specific attributes for organizational units. Its primary role is to support the classification system for organizations, allowing for the storage of varied information types—such as financial, geographic, or operational details—that are not captured in the base organization definition table (HR_ALL_ORGANIZATION_UNITS). This design enables a single organization record to possess multiple, distinct sets of supplementary data based on its assigned classes and the associated information types defined within the application.
Key Information Stored
The table's structure is centered around a key-context-value model. The primary key is ORG_INFORMATION_ID, a unique system-generated identifier. Two critical foreign key columns define the record's context and parent organization: ORGANIZATION_ID links to HR_ALL_ORGANIZATION_UNITS, and ORG_INFORMATION_CONTEXT links to HR_ORG_INFORMATION_TYPES, which defines the valid information type (e.g., 'Accounting Information', 'Work Day Information'). The actual attribute data is stored in the ORG_INFORMATION1 through ORG_INFORMATION20 columns, with the meaning of each column being determined by the context. Additional columns like ORG_INFORMATION21 to ORG_INFORMATION30 may exist for extended flexfield storage. The LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, and CREATED_BY columns provide standard EBS audit trail information.
Common Use Cases and Queries
A primary use case is retrieving all supplementary information for a specific organization, which is essential for comprehensive organization reports or data feeds to downstream systems like General Ledger or Payroll. For example, to find the accounting flexfield (e.g., Company, Cost Center) assigned to an organization, a typical query would join on the context. Reporting often involves pivoting multiple rows (different contexts) for a single organization into a single row. Developers also frequently interact with this table when writing custom interfaces or extensions that need to populate or validate organization-specific attributes beyond the standard fields.
- Retrieve all information for a specific organization ID:
SELECT * FROM hr_organization_info WHERE organization_id = <org_id> ORDER BY org_information_context; - Find organizations with a specific information type and value:
SELECT hou.name FROM hr_organization_units hou, hr_organization_info hoi WHERE hou.organization_id = hoi.organization_id AND hoi.org_information_context = 'CLASS' AND hoi.org_information1 = 'DEPARTMENT';
Related Objects
As indicated by the foreign keys in the metadata, HR_ORGANIZATION_INFORMATION has direct dependencies on two principal tables. HR_ALL_ORGANIZATION_UNITS is the parent table containing the core definition of the organization (name, location, type). HR_ORG_INFORMATION_TYPES is the reference table that validates the ORG_INFORMATION_CONTEXT and defines which of the ORG_INFORMATION# columns are used and their meaning for that context. In application logic, this table is typically accessed via public APIs or views rather than directly. Key related views may include HR_ORGANIZATION_UNITS (a view on HR_ALL_ORGANIZATION_UNITS) and per_org_info_types_vl. Custom reporting often joins this table with HR_LOCATIONS and financial tables like GL_CODE_COMBINATIONS when the stored information includes accounting segments.
-
Table: HR_ORGANIZATION_INFORMATION
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_ORGANIZATION_INFORMATION, object_name:HR_ORGANIZATION_INFORMATION, status:VALID, product: PER - Human Resources , description: Additional attributes of an organization, dependent on class or organization information type. , implementation_dba_data: HR.HR_ORGANIZATION_INFORMATION ,
-
Table: HR_ORGANIZATION_INFORMATION
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_ORGANIZATION_INFORMATION, object_name:HR_ORGANIZATION_INFORMATION, status:VALID, product: PER - Human Resources , description: Additional attributes of an organization, dependent on class or organization information type. , implementation_dba_data: HR.HR_ORGANIZATION_INFORMATION ,
-
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_HEADQUARTERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HEADQUARTERS_V, object_name:HR_HEADQUARTERS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_HEADQUARTERS_V ,
-
View: HR_HEADQUARTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HEADQUARTERS_V, object_name:HR_HEADQUARTERS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_HEADQUARTERS_V ,
-
View: HR_FR_ESTABLISHMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_FR_ESTABLISHMENTS_V, object_name:HR_FR_ESTABLISHMENTS_V, status:VALID, product: PER - Human Resources , description: HR_FR_ESTABLISHMENTS_V lists the French organizations which have been identified as Establishments. , implementation_dba_data: APPS.HR_FR_ESTABLISHMENTS_V ,
-
View: PER_DEFAULT_BUDGET_VALUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_DEFAULT_BUDGET_VALUES, object_name:PER_DEFAULT_BUDGET_VALUES, status:VALID, product: PER - Human Resources , description: View based on HR_ORGANIZATION_UNITS and HR_ORGANIZATION_INFORMATION , implementation_dba_data: APPS.PER_DEFAULT_BUDGET_VALUES ,
-
View: HR_FR_ESTABLISHMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_FR_ESTABLISHMENTS_V, object_name:HR_FR_ESTABLISHMENTS_V, status:VALID, product: PER - Human Resources , description: HR_FR_ESTABLISHMENTS_V lists the French organizations which have been identified as Establishments. , implementation_dba_data: APPS.HR_FR_ESTABLISHMENTS_V ,
-
View: PER_DEFAULT_BUDGET_VALUES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_DEFAULT_BUDGET_VALUES, object_name:PER_DEFAULT_BUDGET_VALUES, status:VALID, product: PER - Human Resources , description: View based on HR_ORGANIZATION_UNITS and HR_ORGANIZATION_INFORMATION , implementation_dba_data: APPS.PER_DEFAULT_BUDGET_VALUES ,
-
View: HR_WORKSITE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_WORKSITE_V, object_name:HR_WORKSITE_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_WORKSITE_V ,
-
View: HR_WORKSITE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_WORKSITE_V, object_name:HR_WORKSITE_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_WORKSITE_V ,
-
View: HR_CA_TAX_UNITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CA_TAX_UNITS_V, object_name:HR_CA_TAX_UNITS_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_CA_TAX_UNITS_V ,
-
View: HR_CA_TAX_UNITS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CA_TAX_UNITS_V, object_name:HR_CA_TAX_UNITS_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_CA_TAX_UNITS_V ,
-
View: HR_ESTABLISHMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ESTABLISHMENTS_V, object_name:HR_ESTABLISHMENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_ESTABLISHMENTS_V ,
-
View: PER_BUSINESS_GROUPS_PERF
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_BUSINESS_GROUPS_PERF, object_name:PER_BUSINESS_GROUPS_PERF, status:VALID, product: PER - Human Resources , description: Performance view based on HR_ORGANIZATION_UNITS and HR_ORGANIZATION_INFORMATION , implementation_dba_data: APPS.PER_BUSINESS_GROUPS_PERF ,
-
View: PER_BUSINESS_GROUPS_PERF
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_BUSINESS_GROUPS_PERF, object_name:PER_BUSINESS_GROUPS_PERF, status:VALID, product: PER - Human Resources , description: Performance view based on HR_ORGANIZATION_UNITS and HR_ORGANIZATION_INFORMATION , implementation_dba_data: APPS.PER_BUSINESS_GROUPS_PERF ,
-
View: HR_ESTABLISHMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ESTABLISHMENTS_V, object_name:HR_ESTABLISHMENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_ESTABLISHMENTS_V ,
-
View: PER_BUSINESS_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_BUSINESS_GROUPS, object_name:PER_BUSINESS_GROUPS, status:VALID, product: PER - Human Resources , description: View based on HR_ORGANIZATION_UNITS and HR_ORGANIZATION that returns specific information for a Business Group. , implementation_dba_data: APPS.PER_BUSINESS_GROUPS ,
-
View: PER_BUSINESS_GROUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_BUSINESS_GROUPS, object_name:PER_BUSINESS_GROUPS, status:VALID, product: PER - Human Resources , description: View based on HR_ORGANIZATION_UNITS and HR_ORGANIZATION that returns specific information for a Business Group. , implementation_dba_data: APPS.PER_BUSINESS_GROUPS ,
-
View: HR_PERSON_LEGISLATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_PERSON_LEGISLATION_V, object_name:HR_PERSON_LEGISLATION_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_PERSON_LEGISLATION_V ,
-
View: HR_PERSON_LEGISLATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_PERSON_LEGISLATION_V, object_name:HR_PERSON_LEGISLATION_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_PERSON_LEGISLATION_V ,
-
View: HR_AAP_ORGANIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_AAP_ORGANIZATIONS_V, object_name:HR_AAP_ORGANIZATIONS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_AAP_ORGANIZATIONS_V ,
-
View: HR_FR_ESTAB_DADS_FILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_FR_ESTAB_DADS_FILES_V, object_name:HR_FR_ESTAB_DADS_FILES_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_FR_ESTAB_DADS_FILES_V ,
-
View: HR_AAP_ORGANIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_AAP_ORGANIZATIONS_V, object_name:HR_AAP_ORGANIZATIONS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_AAP_ORGANIZATIONS_V ,
-
View: HR_DE_TAX_OFFICES_LOV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_TAX_OFFICES_LOV, object_name:HR_DE_TAX_OFFICES_LOV, status:VALID, product: PER - Human Resources , description: View for german Tax offices stored as Organizations , implementation_dba_data: APPS.HR_DE_TAX_OFFICES_LOV ,
-
View: HR_OPERATING_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_OPERATING_UNITS, object_name:HR_OPERATING_UNITS, status:VALID, product: PER - Human Resources , description: Information about operating units. , implementation_dba_data: APPS.HR_OPERATING_UNITS ,
-
View: HR_DE_TAX_OFFICES_LOV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DE_TAX_OFFICES_LOV, object_name:HR_DE_TAX_OFFICES_LOV, status:VALID, product: PER - Human Resources , description: View for german Tax offices stored as Organizations , implementation_dba_data: APPS.HR_DE_TAX_OFFICES_LOV ,
-
View: HR_FR_ESTAB_COLL_AGRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_FR_ESTAB_COLL_AGRS_V, object_name:HR_FR_ESTAB_COLL_AGRS_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_FR_ESTAB_COLL_AGRS_V ,
-
View: HR_HK_LEGAL_EMPLOYER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HK_LEGAL_EMPLOYER_V, object_name:HR_HK_LEGAL_EMPLOYER_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_HK_LEGAL_EMPLOYER_V ,
-
View: HR_FR_ESTAB_DADS_FILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_FR_ESTAB_DADS_FILES_V, object_name:HR_FR_ESTAB_DADS_FILES_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_FR_ESTAB_DADS_FILES_V ,
-
View: HR_FR_COMPANIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_FR_COMPANIES_V, object_name:HR_FR_COMPANIES_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_FR_COMPANIES_V ,
-
View: HR_FR_COMPANIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_FR_COMPANIES_V, object_name:HR_FR_COMPANIES_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_FR_COMPANIES_V ,
-
View: HR_OPERATING_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_OPERATING_UNITS, object_name:HR_OPERATING_UNITS, status:VALID, product: PER - Human Resources , description: Information about operating units. , implementation_dba_data: APPS.HR_OPERATING_UNITS ,
-
View: HR_LEGAL_ENTITIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LEGAL_ENTITIES, object_name:HR_LEGAL_ENTITIES, status:VALID, product: PER - Human Resources , description: Used in US localizations to reflect the common organization structure Legal Entity/Company/Tax Unit. , implementation_dba_data: APPS.HR_LEGAL_ENTITIES ,
-
View: HR_NZ_TAX_UNIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_NZ_TAX_UNIT_V, object_name:HR_NZ_TAX_UNIT_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_NZ_TAX_UNIT_V ,
-
View: HR_HK_LEGAL_EMPLOYER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HK_LEGAL_EMPLOYER_V, object_name:HR_HK_LEGAL_EMPLOYER_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_HK_LEGAL_EMPLOYER_V ,
-
View: HR_FR_ESTAB_COLL_AGRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_FR_ESTAB_COLL_AGRS_V, object_name:HR_FR_ESTAB_COLL_AGRS_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_FR_ESTAB_COLL_AGRS_V ,
-
View: HR_COMPANY_COST_CENTERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_COMPANY_COST_CENTERS, object_name:HR_COMPANY_COST_CENTERS, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_COMPANY_COST_CENTERS ,
-
View: HR_AU_LEG_EMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_AU_LEG_EMP_V, object_name:HR_AU_LEG_EMP_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_AU_LEG_EMP_V ,
-
View: HR_FR_ESTAB_DADS_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_FR_ESTAB_DADS_TYPES_V, object_name:HR_FR_ESTAB_DADS_TYPES_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_FR_ESTAB_DADS_TYPES_V ,
-
View: HR_SG_LEG_ENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_SG_LEG_ENT_V, object_name:HR_SG_LEG_ENT_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_SG_LEG_ENT_V ,
-
View: HR_LEGAL_ENTITIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LEGAL_ENTITIES, object_name:HR_LEGAL_ENTITIES, status:VALID, product: PER - Human Resources , description: Used in US localizations to reflect the common organization structure Legal Entity/Company/Tax Unit. , implementation_dba_data: APPS.HR_LEGAL_ENTITIES ,
-
View: HR_FR_ESTAB_DADS_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_FR_ESTAB_DADS_TYPES_V, object_name:HR_FR_ESTAB_DADS_TYPES_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_FR_ESTAB_DADS_TYPES_V ,
-
View: HR_AU_LEG_EMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_AU_LEG_EMP_V, object_name:HR_AU_LEG_EMP_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_AU_LEG_EMP_V ,
-
View: HR_NZ_TAX_UNIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_NZ_TAX_UNIT_V, object_name:HR_NZ_TAX_UNIT_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_NZ_TAX_UNIT_V ,
-
View: HR_SG_LEG_ENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_SG_LEG_ENT_V, object_name:HR_SG_LEG_ENT_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_SG_LEG_ENT_V ,
-
View: HR_COMPANY_COST_CENTERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_COMPANY_COST_CENTERS, object_name:HR_COMPANY_COST_CENTERS, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_COMPANY_COST_CENTERS ,
-
View: PER_ALL_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ORGANIZATION_UNITS, object_name:PER_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Unsecured version of PER_ORGANIZATION_UNITS. , implementation_dba_data: APPS.PER_ALL_ORGANIZATION_UNITS ,
-
View: HR_FR_URSSAF_CENTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_FR_URSSAF_CENTERS_V, object_name:HR_FR_URSSAF_CENTERS_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_FR_URSSAF_CENTERS_V ,