Search Results hz_security_issued
Overview
HZ_SECURITY_ISSUED is a Receivables (AR) table in Oracle E-Business Suite that stores financial instruments issued by an organization. It records securities such as stocks or bonds along with their identifiers, issuer, trading venue, currency, and active date range. The table sits within the Trading Community Architecture (TCA) model, since it anchors each issued security to a party via PARTY_ID. In EBS 12.1.1 and 12.2.2 the object remains VALID and is owned by the AR schema. The documented physical schema for 12.2.2 lists 22 columns.
From a Data Vault modeling perspective, this table is best classified as a link. The classification is heuristic, derived from the foreign-key structure: HZ_SECURITY_ISSUED references multiple hub-like entities (HZ_PARTIES, HZ_STOCK_MARKETS, and FND_CURRENCIES) and therefore acts as a connecting associative table between them, rather than as a standalone hub or a descriptive satellite. This is a modeling suggestion, not a documented fact.
Key Information Stored
The primary key is the surrogate identifier SECURITY_ISSUED_ID, enforced by the constraint HZ_SECURITY_ISSUED_PK. A unique index, HZ_SECURITY_ISSUED_U1, also exists on SECURITY_ISSUED_ID, confirming it as the single documented business-key candidate. The most significant columns are:
- SECURITY_ISSUED_ID — surrogate primary key uniquely identifying each issued security.
- PARTY_ID — foreign key to HZ_PARTIES, identifying the issuing or associated party.
- STOCK_EXCHANGE_ID — foreign key to HZ_STOCK_MARKETS, the exchange where the security is traded.
- SECURITY_CURRENCY_CODE — foreign key to FND_CURRENCIES, defining the denomination currency.
- SECURITY_ISSUED_NAME — descriptive name of the issued security.
- SECURITY_ISSUED_CLASS — classification of the instrument (for example, equity or debt type).
- STOCK_TICKER_SYMBOL — market ticker symbol for the security.
- ESTIMATED_TOTAL_AMOUNT and TOTAL_AMOUNT_IN_A_CURRENCY — monetary measures of the issued amount.
- BEGIN_DATE and END_DATE — validity window for the issued security.
- STATUS — lifecycle or active status indicator.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard audit columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent program context columns.
Common Use Cases and Queries
Typical usage includes reviewing all securities issued by a given party, reporting holdings by exchange, and validating currency-denominated instrument totals. A join to the party table resolves the issuer name:
SELECT s.security_issued_id, s.security_issued_name,
p.party_name, s.stock_ticker_symbol
FROM hz_security_issued s, hz_parties p
WHERE s.party_id = p.party_id;
Reporting by exchange and currency joins the market and currency lookups:
SELECT s.security_issued_name, m.market_name,
s.security_currency_code, s.total_amount_in_a_currency
FROM hz_security_issued s, hz_stock_markets m
WHERE s.stock_exchange_id = m.stock_exchange_id;
Related Objects
- HZ_PARTIES — joined on HZ_SECURITY_ISSUED.PARTY_ID = HZ_PARTIES.PARTY_ID; provides issuer identity.
- HZ_STOCK_MARKETS — joined on HZ_SECURITY_ISSUED.STOCK_EXCHANGE_ID = HZ_STOCK_MARKETS.STOCK_EXCHANGE_ID; trading venue.
- FND_CURRENCIES — joined on HZ_SECURITY_ISSUED.SECURITY_CURRENCY_CODE = FND_CURRENCIES.CURRENCY_CODE; denomination lookup.
- HZ_SECURITY_ISSUED_PK / HZ_SECURITY_ISSUED_U1 — primary key constraint and unique index on SECURITY_ISSUED_ID.
-
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 ,
-
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 ,
-
APPS.HZ_SECURITY_ISSUED_PKG SQL Statements
12.2.2
-
VIEW: AR.HZ_SECURITY_ISSUED#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_SECURITY_ISSUED#, status:VALID,
-
SYNONYM: APPS.HZ_SECURITY_ISSUED
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_SECURITY_ISSUED, status:VALID,
-
SYNONYM: APPS.HZ_SECURITY_ISSUED
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_SECURITY_ISSUED, status:VALID,
-
VIEW: AR.HZ_SECURITY_ISSUED#
12.2.2
-
APPS.HZ_SECURITY_ISSUED_PKG SQL Statements
12.1.1
-
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 ,
-
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,
-
PACKAGE BODY: APPS.HZ_SECURITY_ISSUED_PKG
12.1.1
-
PACKAGE BODY: APPS.HZ_SECURITY_ISSUED_PKG
12.2.2
-
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,
-
PACKAGE BODY: APPS.HZ_SECURITY_ISSUED_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_SECURITY_ISSUED_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_SECURITY_ISSUED_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_SECURITY_ISSUED_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_MERGE_DUP_CHECK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MERGE_DUP_CHECK, status:VALID,
-
PACKAGE BODY: APPS.HZ_MERGE_DUP_CHECK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MERGE_DUP_CHECK, 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,
-
PACKAGE BODY: APPS.HZ_PURGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_PURGE, status:VALID,
-
PACKAGE BODY: APPS.HZ_PURGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_PURGE, status:VALID,
-
PACKAGE BODY: APPS.HZ_MERGE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MERGE_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_MERGE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MERGE_PKG, status:VALID,
-
APPS.HZ_MERGE_DUP_CHECK SQL Statements
12.2.2
-
APPS.HZ_MERGE_DUP_CHECK SQL Statements
12.1.1
-
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
-
Table: FND_CURRENCIES
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID, product: FND - Application Object Library , description: Currencies enabled for use at your site , implementation_dba_data: APPLSYS.FND_CURRENCIES ,
-
APPS.HZ_ORG_INFO_VALIDATE SQL Statements
12.1.1
-
APPS.HZ_ORG_INFO_PUB SQL Statements
12.1.1
-
APPS.HZ_ORG_INFO_PUB SQL Statements
12.2.2
-
APPS.HZ_ORG_INFO_PUB dependencies on HZ_SECURITY_ISSUED
12.2.2
-
APPS.HZ_ORG_INFO_VALIDATE SQL Statements
12.2.2
-
Table: FND_CURRENCIES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID, product: FND - Application Object Library , description: Currencies enabled for use at your site , implementation_dba_data: APPLSYS.FND_CURRENCIES ,
-
APPS.HZ_PURGE dependencies on HZ_SECURITY_ISSUED
12.2.2
-
APPS.HZ_SECURITY_ISSUED_PKG dependencies on HZ_SECURITY_ISSUED
12.1.1
-
APPS.HZ_MERGE_DUP_CHECK dependencies on HZ_SECURITY_ISSUED
12.1.1
-
APPS.HZ_PURGE dependencies on HZ_SECURITY_ISSUED
12.1.1
-
APPS.HZ_ORG_INFO_VALIDATE dependencies on HZ_SECURITY_ISSUED
12.1.1
-
APPS.HZ_PURGE SQL Statements
12.2.2
-
APPS.HZ_PURGE SQL Statements
12.1.1
-
APPS.HZ_ORG_INFO_PUB dependencies on HZ_SECURITY_ISSUED
12.1.1
-
APPS.HZ_MERGE_PKG dependencies on HZ_SECURITY_ISSUED
12.1.1
-
APPS.HZ_SECURITY_ISSUED_PKG dependencies on HZ_SECURITY_ISSUED
12.2.2