Search Results hz_stock_markets
Overview
HZ_STOCK_MARKETS is a reference table owned by the AR (Receivables) schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the master list of stock exchanges — the regulated marketplaces where financial instruments such as equities, bonds, and other securities are bought and sold. Within the broader Oracle Trading Community Architecture and the HZ (Trading Community) entity model, this table functions as a static lookup that qualifies the venue on which a security is traded. Each row describes a single stock exchange, identified by a surrogate primary key and contextualized by country and exchange codes.
The table carries a status of VALID in the ETRM repository and is delivered as part of standard Receivables functionality, reflecting its role in supporting customer and counterparty financial profiling rather than transactional postings. A heuristic Data Vault classification suggests this object behaves as a hub-leaning entity: its primary key STOCK_EXCHANGE_ID is a stable, unique business identifier that anchors dependent records, which is characteristic of a hub in a Data Vault model. No link or satellite classification is asserted, so this should be treated as a modeling suggestion rather than a documented fact.
Key Information Stored
The table contains 14 documented columns. The most significant are:
- STOCK_EXCHANGE_ID — the surrogate primary key (constraint HZ_STOCK_MARKETS_PK) and simultaneously the single documented unique business-key candidate (index HZ_STOCK_MARKETS_U1). It uniquely identifies each exchange and is the column referenced by foreign keys in dependent tables.
- STOCK_EXCHANGE_CODE — a short alphanumeric code denoting the exchange, typically the operational/business key used for lookup and display.
- STOCK_EXCHANGE_NAME — the descriptive name of the exchange (for example, a recognizable market name).
- COUNTRY_OF_RESIDENCE — the country in which the exchange is domiciled, supporting geographic classification and reporting.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard Oracle WHO-column audit trail capturing row creation and modification.
- LAST_UPDATE_LOGIN — the login/user session associated with the most recent change.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent-request and program context columns recording the batch job that last touched the row.
- WH_UPDATE_DATE — the warehouse update timestamp used by EBS reporting/warehouse extraction processes.
The surrogate STOCK_EXCHANGE_ID is distinct from the descriptive business attributes STOCK_EXCHANGE_CODE and STOCK_EXCHANGE_NAME; only STOCK_EXCHANGE_ID is formally documented as a unique key, while the code and name serve as the practical business identifiers.
Common Use Cases and Queries
The table is primarily consumed as a lookup when populating or validating the stock exchange associated with an issued security. Typical scenarios include rendering a list of values for exchange selection, resolving an exchange ID to its name for reporting, and joining exchange data to securities for financial profiling.
A common retrieval pattern selects the exchange identity and country:
SELECT stock_exchange_id, stock_exchange_code, stock_exchange_name, country_of_residence FROM hz_stock_markets ORDER BY stock_exchange_name;- To resolve a security to its exchange, join via the foreign key column:
SELECT s.security_id, m.stock_exchange_name FROM hz_security_issued s, hz_stock_markets m WHERE s.stock_exchange_id = m.stock_exchange_id; - To list exchanges by country:
SELECT country_of_residence, COUNT(*) FROM hz_stock_markets GROUP BY country_of_residence;
Because the table is reference data, it is frequently queried directly, cached in list-of-values components, and extracted into reporting warehouses using the WH_UPDATE_DATE watermark.
Related Objects
The most significant dependent object is the security master. The documented foreign-key relationship shows that HZ_SECURITY_ISSUED references HZ_STOCK_MARKETS through the column STOCK_EXCHANGE_ID, meaning each issued security points back to the exchange on which it trades. This is the primary join path and the principal consumer of the table.
Other relevant objects in the same HZ model include the surrounding Trading Community and financial-profile tables (for example, security and customer financial-instrument entities) that either reference exchanges or are referenced alongside them. Because the documented metadata identifies only HZ_SECURITY_ISSUED as an explicit foreign-key dependent, that table should be treated as the authoritative related object, with adjacent HZ security tables understood as part of the same financial-instrument domain.
-
Table: HZ_STOCK_MARKETS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_STOCK_MARKETS, object_name:HZ_STOCK_MARKETS, status:VALID, product: AR - Receivables , description: Exchanges for buying and selling financial instruments , implementation_dba_data: AR.HZ_STOCK_MARKETS ,
-
Table: HZ_STOCK_MARKETS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_STOCK_MARKETS, object_name:HZ_STOCK_MARKETS, status:VALID, product: AR - Receivables , description: Exchanges for buying and selling financial instruments , implementation_dba_data: AR.HZ_STOCK_MARKETS ,
-
VIEW: AR.HZ_STOCK_MARKETS#
12.2.2
-
VIEW: AR.HZ_STOCK_MARKETS#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_STOCK_MARKETS#, status:VALID,
-
SYNONYM: APPS.HZ_STOCK_MARKETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_STOCK_MARKETS, status:VALID,
-
SYNONYM: APPS.HZ_STOCK_MARKETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_STOCK_MARKETS, status:VALID,
-
APPS.HZ_STOCK_MARKETS_PKG SQL Statements
12.2.2
-
APPS.HZ_STOCK_MARKETS_PKG SQL Statements
12.1.1
-
TABLE: AR.HZ_STOCK_MARKETS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_STOCK_MARKETS, object_name:HZ_STOCK_MARKETS, status:VALID,
-
TABLE: AR.HZ_STOCK_MARKETS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_STOCK_MARKETS, object_name:HZ_STOCK_MARKETS, status:VALID,
-
PACKAGE BODY: APPS.HZ_STOCK_MARKETS_PKG
12.2.2
-
PACKAGE BODY: APPS.HZ_STOCK_MARKETS_PKG
12.1.1
-
Table: HZ_SECURITY_ISSUED
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_SECURITY_ISSUED, object_name:HZ_SECURITY_ISSUED, status:VALID, product: AR - Receivables , description: Financial instruments issued by an organization , implementation_dba_data: AR.HZ_SECURITY_ISSUED ,
-
Table: HZ_SECURITY_ISSUED
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_SECURITY_ISSUED, object_name:HZ_SECURITY_ISSUED, status:VALID, product: AR - Receivables , description: Financial instruments issued by an organization , implementation_dba_data: AR.HZ_SECURITY_ISSUED ,
-
PACKAGE BODY: APPS.HZ_STOCK_MARKETS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_STOCK_MARKETS_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_STOCK_MARKETS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_STOCK_MARKETS_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_ORG_INFO_VALIDATE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_ORG_INFO_VALIDATE, status:VALID,
-
PACKAGE BODY: APPS.HZ_ORG_INFO_VALIDATE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_ORG_INFO_VALIDATE, status:VALID,
-
PACKAGE BODY: APPS.HZ_ORG_INFO_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_ORG_INFO_PUB, status:VALID,
-
PACKAGE BODY: APPS.HZ_ORG_INFO_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_ORG_INFO_PUB, status:VALID,
-
TABLE: AR.HZ_SECURITY_ISSUED
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_SECURITY_ISSUED, object_name:HZ_SECURITY_ISSUED, status:VALID,
-
TABLE: AR.HZ_SECURITY_ISSUED
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_SECURITY_ISSUED, object_name:HZ_SECURITY_ISSUED, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.HZ_ORG_INFO_VALIDATE
12.2.2
-
APPS.HZ_ORG_INFO_PUB SQL Statements
12.2.2
-
APPS.HZ_ORG_INFO_PUB SQL Statements
12.1.1
-
APPS.HZ_ORG_INFO_VALIDATE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.HZ_ORG_INFO_VALIDATE
12.1.1
-
APPS.HZ_ORG_INFO_VALIDATE SQL Statements
12.2.2
-
APPS.HZ_ORG_INFO_VALIDATE dependencies on HZ_STOCK_MARKETS
12.1.1
-
APPS.HZ_STOCK_MARKETS_PKG dependencies on HZ_STOCK_MARKETS
12.2.2
-
APPS.HZ_ORG_INFO_PUB dependencies on HZ_STOCK_MARKETS
12.1.1
-
APPS.HZ_STOCK_MARKETS_PKG dependencies on HZ_STOCK_MARKETS
12.1.1
-
APPS.HZ_ORG_INFO_PUB dependencies on HZ_STOCK_MARKETS
12.2.2
-
APPS.HZ_ORG_INFO_VALIDATE dependencies on HZ_STOCK_MARKETS
12.2.2
-
APPS.HZ_ORG_INFO_VALIDATE dependencies on FND_CURRENCIES
12.1.1
-
APPS.HZ_ORG_INFO_VALIDATE dependencies on FND_CURRENCIES
12.2.2
-
PACKAGE BODY: APPS.HZ_ORG_INFO_PUB
12.2.2
-
PACKAGE BODY: APPS.HZ_ORG_INFO_PUB
12.1.1
-
APPS.HZ_ORG_INFO_PUB dependencies on DUAL
12.1.1
-
APPS.HZ_ORG_INFO_PUB dependencies on DUAL
12.2.2
-
APPS.HZ_ORG_INFO_VALIDATE dependencies on FND_MESSAGE
12.1.1
-
APPS.HZ_ORG_INFO_VALIDATE dependencies on FND_MESSAGE
12.2.2
-
APPS.HZ_STOCK_MARKETS_PKG dependencies on FND_API
12.2.2
-
APPS.HZ_STOCK_MARKETS_PKG dependencies on FND_API
12.1.1
-
APPS.HZ_ORG_INFO_VALIDATE dependencies on HZ_PARTIES
12.2.2