Search Results hz_orig_systems_vl
Overview
HZ_ORIG_SYSTEMS_VL is a bilingual (MLS-compliant) view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It belongs to the Oracle Receivables (AR) product family and sits within the Oracle Trading Community Architecture (TCA) foundation layer that governs party, customer, and account registries. The view presents origin system definitions — the registry of external and internal source systems that feed party, account, and contact data into TCA. Every record created in TCA carries an ORIG_SYSTEM and ORIG_SYSTEM_ID reference identifying the system of record, making this view a foundational lookup for entity provenance and multi-source data governance.
The "_VL" suffix indicates a "view with language" — a translated view that joins base and translated table rows and filters the translation rows to the session language using USERENV('LANG'). This allows applications and reports to present the origin system name and description in the user's preferred language while keeping ID-based joins against the untranslated base table.
Underlying Base Objects
The document metadata identifies two referenced base objects, both exposed to APPS as synonyms:
- HZ_ORIG_SYSTEMS_B — the base table holding language-independent data, including ORIG_SYSTEM_ID, ORIG_SYSTEM, ORIG_SYSTEM_TYPE, SST_FLAG, STATUS, date ranges, the OBJECT_VERSION_NUMBER column used for optimistic locking, WHO audit columns, and twenty developer extensibility attributes.
- HZ_ORIG_SYSTEMS_TL — the translation table holding ORIG_SYSTEM_NAME and DESCRIPTION per language.
The view text joins the two on ORIG_SYSTEM_ID and filters on T.LANGUAGE = USERENV('LANG'), producing a single logical row per origin system for the current session language. Because the view is a projection over both tables, DML is generally performed against the underlying _B and _TL tables rather than through the view itself; applications typically use the TCA public APIs instead of direct DML.
Key Columns
- ORIG_SYSTEM_ID — primary surrogate key of the origin system; the value stored on HZ_PARTIES, HZ_CUST_ACCOUNTS, and related entities.
- ORIG_SYSTEM — the internal short name or code used to identify the source system in data-load and integration processes.
- ORIG_SYSTEM_TYPE — the classifier queried via the "orig_system_type" search term; distinguishes how the system interacts with TCA (for example, whether it represents an external feeder system, a merge source, or another defined category). This column drives filtering logic in import and interface processing.
- ORIG_SYSTEM_NAME — the translated, user-facing name of the origin system.
- DESCRIPTION — translated descriptive text.
- SST_FLAG — indicates whether the origin system supports the single-source-of-truth designation for related entities.
- STATUS and START_DATE_ACTIVE / END_DATE_ACTIVE — control the active lifecycle of the origin system definition.
- OBJECT_VERSION_NUMBER, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard audit and concurrency columns.
- ATTRIBUTE1–ATTRIBUTE20, ATTRIBUTE_CATEGORY — descriptive flexfield columns available for customer extension.
Common Use Cases and Queries
Typical scenarios include resolving the origin system behind a party record, validating interface loads before inserting into TCA, and building reports that group customers or accounts by their source system.
- List all defined origin systems with their type and language-specific name.
- Retrieve the ORIG_SYSTEM_ID for a known short name prior to an interface insert.
- Join the view to HZ_PARTIES to report party population by originating system.
Sample queries:
SELECT orig_system_id, orig_system, orig_system_type, orig_system_name, status FROM hz_orig_systems_vl ORDER BY orig_system;
SELECT b.orig_system_id, b.orig_system, b.orig_system_type FROM hz_orig_systems_b b WHERE b.orig_system = :p_orig_system AND NVL(b.status,'A') = 'A';
SELECT h.orig_system, h.party_name FROM hz_parties h, hz_orig_systems_vl o WHERE h.orig_system_id = o.orig_system_id AND o.orig_system_type = :p_type;
Because the view resolves the language at query time, session configuration (NLS_LANG / FND language) directly affects which translated rows are returned; reports requiring deterministic output should join the base and translation tables explicitly or constrain the language.
-
View: HZ_ORIG_SYSTEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_ORIG_SYSTEMS_VL, object_name:HZ_ORIG_SYSTEMS_VL, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_ORIG_SYSTEMS_VL ,
-
View: HZ_ORIG_SYSTEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_ORIG_SYSTEMS_VL, object_name:HZ_ORIG_SYSTEMS_VL, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_ORIG_SYSTEMS_VL ,
-
VIEW: APPS.EGO_PUB_BATCH_STATUS_VL
12.2.2
-
SYNONYM: APPS.HZ_ORIG_SYSTEMS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_ORIG_SYSTEMS_TL, status:VALID,
-
SYNONYM: APPS.HZ_ORIG_SYSTEMS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_ORIG_SYSTEMS_TL, status:VALID,
-
View: EGO_PUB_BATCH_STATUS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_PUB_BATCH_STATUS_VL, object_name:EGO_PUB_BATCH_STATUS_VL, status:VALID, product: EGO - Advanced Product Catalog , implementation_dba_data: APPS.EGO_PUB_BATCH_STATUS_VL ,
-
PACKAGE BODY: APPS.HZ_MIXNM_WEBUI_UTILITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_WEBUI_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.HZ_MIXNM_WEBUI_UTILITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_WEBUI_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.EGO_IMPORT_BATCHES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_IMPORT_BATCHES_PKG, status:VALID,
-
SYNONYM: APPS.HZ_ORIG_SYSTEMS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_ORIG_SYSTEMS_B, status:VALID,
-
PACKAGE BODY: APPS.HZ_MIXNM_UTILITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_UTILITY, status:VALID,
-
SYNONYM: APPS.HZ_ORIG_SYSTEMS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_ORIG_SYSTEMS_B, status:VALID,
-
PACKAGE BODY: APPS.HZ_MIXNM_UTILITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MIXNM_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.EGO_PUB_FWK_PK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_PUB_FWK_PK, status:VALID,
-
VIEW: APPS.EGO_PUB_BATCH_STATUS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_PUB_BATCH_STATUS_VL, object_name:EGO_PUB_BATCH_STATUS_VL, status:VALID,
-
TABLE: EGO.EGO_UOM_MAPPING_MASTER
12.1.1
owner:EGO, object_type:TABLE, fnd_design_data:EGO.EGO_UOM_MAPPING_MASTER, object_name:EGO_UOM_MAPPING_MASTER, status:VALID,
-
TABLE: EGO.EGO_UOM_MAPPING_MASTER
12.2.2
owner:EGO, object_type:TABLE, fnd_design_data:EGO.EGO_UOM_MAPPING_MASTER, object_name:EGO_UOM_MAPPING_MASTER, status:VALID,
-
TABLE: EGO.EGO_EXT_SYS_ELEMENTS
12.1.1
owner:EGO, object_type:TABLE, fnd_design_data:EGO.EGO_EXT_SYS_ELEMENTS, object_name:EGO_EXT_SYS_ELEMENTS, status:VALID,
-
TABLE: EGO.EGO_EXT_SYS_ELEMENTS
12.2.2
owner:EGO, object_type:TABLE, fnd_design_data:EGO.EGO_EXT_SYS_ELEMENTS, object_name:EGO_EXT_SYS_ELEMENTS, status:VALID,
-
TABLE: EGO.EGO_ATTR_MAPPING_MASTER
12.1.1
owner:EGO, object_type:TABLE, fnd_design_data:EGO.EGO_ATTR_MAPPING_MASTER, object_name:EGO_ATTR_MAPPING_MASTER, status:VALID,
-
TABLE: EGO.EGO_ATTR_MAPPING_MASTER
12.2.2
owner:EGO, object_type:TABLE, fnd_design_data:EGO.EGO_ATTR_MAPPING_MASTER, object_name:EGO_ATTR_MAPPING_MASTER, status:VALID,
-
VIEW: APPS.HZ_ORIG_SYSTEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_ORIG_SYSTEMS_VL, object_name:HZ_ORIG_SYSTEMS_VL, status:VALID,
-
VIEW: APPS.HZ_ORIG_SYSTEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_ORIG_SYSTEMS_VL, object_name:HZ_ORIG_SYSTEMS_VL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.HZ_MIXNM_WEBUI_UTILITY SQL Statements
12.2.2
-
APPS.HZ_MIXNM_WEBUI_UTILITY SQL Statements
12.1.1
-
APPS.EGO_PUB_FWK_PK SQL Statements
12.2.2
-
APPS.HZ_MIXNM_WEBUI_UTILITY dependencies on HZ_ORIG_SYSTEMS_VL
12.2.2
-
APPS.EGO_PUB_FWK_PK dependencies on HZ_ORIG_SYSTEMS_VL
12.2.2
-
APPS.HZ_MIXNM_UTILITY dependencies on HZ_ORIG_SYSTEMS_VL
12.2.2
-
APPS.EGO_IMPORT_BATCHES_PKG dependencies on HZ_ORIG_SYSTEMS_VL
12.2.2
-
APPS.HZ_MIXNM_UTILITY dependencies on HZ_ORIG_SYSTEMS_VL
12.1.1
-
APPS.HZ_MIXNM_WEBUI_UTILITY dependencies on HZ_ORIG_SYSTEMS_VL
12.1.1
-
APPS.EGO_IMPORT_BATCHES_PKG SQL Statements
12.2.2
-
APPS.HZ_MIXNM_UTILITY SQL Statements
12.1.1
-
APPS.HZ_MIXNM_UTILITY SQL Statements
12.2.2
-
APPS.EGO_IMPORT_BATCHES_PKG dependencies on EGO_SOURCE_SYSTEM_EXT
12.2.2
-
APPS.HZ_MIXNM_UTILITY dependencies on HZ_THIRDPARTY_RULE
12.1.1
-
APPS.HZ_MIXNM_UTILITY dependencies on HZ_THIRDPARTY_RULE
12.2.2
-
APPS.HZ_MIXNM_UTILITY dependencies on HZ_USER_OVERWRITE_RULES
12.1.1
-
APPS.HZ_MIXNM_UTILITY dependencies on HZ_USER_OVERWRITE_RULES
12.2.2
-
APPS.HZ_MIXNM_WEBUI_UTILITY dependencies on HZ_SELECT_DATA_SOURCES
12.2.2
-
APPS.HZ_MIXNM_WEBUI_UTILITY dependencies on HZ_SELECT_DATA_SOURCES
12.1.1
-
PACKAGE BODY: APPS.HZ_MIXNM_WEBUI_UTILITY
12.1.1
-
PACKAGE BODY: APPS.HZ_MIXNM_WEBUI_UTILITY
12.2.2
-
PACKAGE BODY: APPS.EGO_IMPORT_BATCHES_PKG
12.2.2
-
PACKAGE BODY: APPS.EGO_PUB_FWK_PK
12.2.2
-
eTRM - EGO Tables and Views
12.2.2
description: Interface table for Item Catalog Category header information ,
-
PACKAGE BODY: APPS.HZ_MIXNM_UTILITY
12.1.1