Search Results hz_security_issued_n1




Overview

The AR.HZ_SECURITY_ISSUED table is a TCA (Trading Community Architecture) registry object that stores information about financial instruments — such as stocks and bonds — issued by an organization (party). It captures the securities a party has brought to market, the exchange on which those securities trade, the applicable currency, and the associated monetary amounts. The table resides in the APPS_TS_TX_DATA tablespace at PCTFREE 10 and is owned by the AR schema, with FND design data registered as AR.HZ_SECURITY_ISSUED. Its status is VALID in both Oracle EBS 12.1.1 and 12.2.2.

Within a Data Vault modeling interpretation, this table is best classified heuristically as a link entity: it resolves the many-to-many relationship between a party (PARTY_IDHZ_PARTIES) and a stock exchange (STOCK_EXCHANGE_IDHZ_STOCK_MARKETS), while also carrying descriptive attributes about the specific issuance. The surrogate primary key SECURITY_ISSUED_ID provides the stable identity for each issuance record across the EBS data model.

Key Information Stored

The table contains 22 documented columns in the 12.2.2 physical schema. The most significant are:

Common Use Cases and Queries

Typical uses include party profile maintenance in the Customers/Suppliers forms, trade repository reporting, and securities analytics. Common query patterns:

  • List all securities issued by a party:
    SELECT security_issued_id, security_issued_name, security_issued_class FROM hz_security_issued WHERE party_id = :p_party_id;
  • Join to HZ_PARTIES to retrieve the issuer name:
    SELECT s.security_issued_name, p.party_name FROM hz_security_issued s, hz_parties p WHERE s.party_id = p.party_id;
  • Analyze securities per exchange:
    SELECT stock_exchange_id, COUNT(*) FROM hz_security_issued GROUP BY stock_exchange_id;
  • Reporting by currency class using FND_CURRENCIES for descriptive lookup.

Related Objects

  • HZ_PARTIES — joined via HZ_SECURITY_ISSUED.PARTY_ID = HZ_PARTIES.PARTY_ID.
  • HZ_STOCK_MARKETS — joined via HZ_SECURITY_ISSUED.STOCK_EXCHANGE_ID = HZ_STOCK_MARKETS.STOCK_EXCHANGE_ID.
  • FND_CURRENCIES — joined via HZ_SECURITY_ISSUED.SECURITY_CURRENCY_CODE = FND_CURRENCIES.CURRENCY_CODE.
  • TCA party APIs (HZ_PARTY_V2PUB, HZ_PARTY_SITE_V2PUB) and the Customers/Suppliers UI that maintain party-issued securities.
  • Related HZ_* registry tables (e.g., HZ_STOCK_MARKETS) that share the AR schema and APPS_TS_TX_DATA storage.