Search Results as_issue_listing_idfr
Overview
The AS_ISSUE_LISTING_IDFR table resides in the OSM schema and belongs to the AS – Sales Foundation product family within Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to hold issue listing identifiers — that is, the external listing references (listing schemes, values, and search codes) associated with securities issues tracked by the ETRM (Enterprise Trading and Risk Management) component of Oracle EBS. Each row ties a specific issue to a specific exchange and captures the identifier value under a given listing scheme, making the table a critical cross-reference between internal issue records and external marketplace identifiers.
The metadata classifies this object heuristically as standalone under a Data Vault modeling lens. In practice, this suggests the table functions as an independent identifier registry rather than a pure hub, link, or satellite. It carries its own surrogate key and business-key uniqueness but references parent entities (issues, exchanges, security groups) without itself being a junction table in the strict Data Vault sense.
Key Information Stored
The table contains 31 documented columns in the 12.2.2 physical schema. The most operationally significant are:
- ISSUE_LISTING_IDFR_ID — the surrogate primary key (constraint
ISSUELTGID_PK), and also the sole unique-index candidate (AS_ISSUE_LISTING_IDFR_U1), serving as the business-key column. - ISSUE_ID — foreign key to
AS_ISSUES_B, identifying which security issue the listing identifier belongs to. - EXCHANGE_ID — foreign key to
AS_EXCHANGES_B, indicating the exchange on which the listing is registered. - SECURITY_GROUP_ID — foreign key to
FND_SECURITY_GROUPS, enforcing multi-org/row-level security partitioning. - SCHEME — the listing scheme or naming convention applied to the identifier (for example, a ticker symbology or regulatory code system).
- VALUE — the actual identifier string assigned under the scheme.
- SEARCH_CODE — a normalized or abbreviated form used for lookup and matching.
- COUNTRY_CODE — the country jurisdiction associated with the listing.
- LISTING_FLAG — indicates whether the issue is actively listed.
- OBJECT_VERSION_NUMBER — optimistic locking column supporting concurrent updates.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — the standard EBS flexfield descriptive columns for extensibility.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard audit columns.
The distinction between the surrogate key (ISSUE_LISTING_IDFR_ID) and the unique business-key index is notable; the unique index is defined on the same column, meaning no separate natural business key is enforced beyond the surrogate.
Common Use Cases and Queries
Typical scenarios include retrieving all listing identifiers for a given issue, resolving an external listing value back to an internal issue, and reporting issues by exchange. Sample patterns:
- List all identifiers for an issue:
SELECT scheme, value, search_code, country_code FROM as_issue_listing_idfr WHERE issue_id = :p_issue_id; - Resolve a listing value:
SELECT issue_id, exchange_id FROM as_issue_listing_idfr WHERE scheme = :p_scheme AND value = :p_value; - Report active listings by exchange:
SELECT i.issue_id, l.scheme, l.value FROM as_issue_listing_idfr l, as_issues_b i WHERE l.listing_flag = 'Y' AND l.issue_id = i.issue_id AND l.exchange_id = :p_exchange_id;
Reporting use cases center on security master maintenance, exchange listing reconciliation, and downstream market-data mapping.
Related Objects
- AS_ISSUES_B — joined on
ISSUE_ID; the parent issue definition. - AS_EXCHANGES_B — joined on
EXCHANGE_ID; the exchange master. - FND_SECURITY_GROUPS — joined on
SECURITY_GROUP_ID; row-level security. - AS_ISSUES_TL — translated issue names for reporting joins.
- AS_ISSUE_LISTING_IDFR_U1 — unique index supporting identifier lookups.
These relationships confirm the table’s role as a linking registry between the security master and exchange reference data within Sales Foundation.
-
Table: AS_ISSUE_LISTING_IDFR
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_ISSUE_LISTING_IDFR, object_name:AS_ISSUE_LISTING_IDFR, status:VALID, product: AS - Sales Foundation , description: Holds issue listing identifiers , implementation_dba_data: OSM.AS_ISSUE_LISTING_IDFR ,
-
Table: AS_ISSUE_LISTING_IDFR
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_ISSUE_LISTING_IDFR, object_name:AS_ISSUE_LISTING_IDFR, status:VALID, product: AS - Sales Foundation , description: Holds issue listing identifiers , implementation_dba_data: OSM.AS_ISSUE_LISTING_IDFR ,
-
VIEW: OSM.AS_ISSUE_LISTING_IDFR#
12.2.2
owner:OSM, object_type:VIEW, object_name:AS_ISSUE_LISTING_IDFR#, status:VALID,
-
SYNONYM: APPS.AS_ISSUE_LISTING_IDFR
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_ISSUE_LISTING_IDFR, status:VALID,
-
SYNONYM: APPS.AS_ISSUE_LISTING_IDFR
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_ISSUE_LISTING_IDFR, status:VALID,
-
VIEW: OSM.AS_ISSUE_LISTING_IDFR#
12.2.2
-
APPS.AS_ISSUE_LISTING_IDFR_PKG SQL Statements
12.1.1
-
APPS.AS_ISSUE_LISTING_IDFR_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AS_ISSUE_LISTING_IDFR_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AS_ISSUE_LISTING_IDFR_PKG, status:VALID,
-
PACKAGE BODY: APPS.AS_ISSUE_LISTING_IDFR_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AS_ISSUE_LISTING_IDFR_PKG, status:VALID,
-
TABLE: OSM.AS_ISSUE_LISTING_IDFR
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_ISSUE_LISTING_IDFR, object_name:AS_ISSUE_LISTING_IDFR, status:VALID,
-
TABLE: OSM.AS_ISSUE_LISTING_IDFR
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_ISSUE_LISTING_IDFR, object_name:AS_ISSUE_LISTING_IDFR, status:VALID,
-
PACKAGE BODY: APPS.AS_ISSUE_LISTING_IDFR_PKG
12.2.2
-
PACKAGE BODY: APPS.AS_ISSUE_LISTING_IDFR_PKG
12.1.1
-
12.2.2 DBA Data
12.2.2
-
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.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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
-
APPS.AS_ISSUE_LISTING_IDFR_PKG dependencies on AS_ISSUE_LISTING_IDFR
12.2.2
-
APPS.AS_ISSUE_LISTING_IDFR_PKG dependencies on AS_ISSUE_LISTING_IDFR
12.1.1
-
APPS.AS_ISSUE_LISTING_IDFR_PKG dependencies on AS_ISSUE_LISTING_IDFR_S
12.1.1
-
APPS.AS_ISSUE_LISTING_IDFR_PKG dependencies on AS_ISSUE_LISTING_IDFR_S
12.2.2
-
APPS.AS_ISSUE_LISTING_IDFR_PKG dependencies on DUAL
12.2.2
-
APPS.AS_ISSUE_LISTING_IDFR_PKG dependencies on DUAL
12.1.1
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,
-
APPS.AS_ISSUE_LISTING_IDFR_PKG dependencies on FND_API
12.1.1
-
APPS.AS_ISSUE_LISTING_IDFR_PKG dependencies on FND_API
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,