Search Results fund_issue_id




Overview

AS_FUND_DETAILS_V is a denormalized reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the AS – Sales Foundation product family. The view consolidates fund master data, fund issue data, issue group translations, and trading party information into a single flattened result set, allowing reporting and integration layers to retrieve fund-level attributes without repeatedly joining the underlying transactional tables. Because the view resolves multilingual (TL) tables using USERENV('LANG'), it returns descriptions and names in the language of the active session, which makes it suitable for concurrent programs, OAF pages, and BI Publisher reports operating under a defined language context. The view is documented in ETRM 12.2.2 metadata with a status of VALID and the same definition applies to the 12.1.1 code line.

Underlying Base Objects

The view is defined over six base objects, all accessed through APPS synonyms: AS_FUNDS_B, AS_FUNDS_TL, AS_ISSUES_B, AS_ISSUES_TL, AS_ISSUE_GROUPS_TL, and HZ_PARTIES. AS_FUNDS_B supplies the core fund record (FUND_ID, STRATEGY, TARGET_CAP, MANAGEMENT_ASSETS, ISSUE_GROUP_ID, PARTY_ID, ISSUE_ID, and audit columns). AS_FUNDS_TL is joined on FUND_ID and the session language to return FUND_NAME. AS_ISSUES_B provides the fund-linked issue (ISSUE_ID, SECTOR, PARTY_ID, ISSUE_TYPE), while AS_ISSUES_TL supplies the translated issue name. AS_ISSUE_GROUPS_TL provides the issue group name. HZ_PARTIES joins on PARTY_ID to return the managing organization's party name and party type. Notably, the join between AS_FUNDS_B and AS_ISSUES_B is an outer join (IB.ISSUE_ID(+) = FB.ISSUE_ID), meaning funds without an associated fund issue still appear in the result set; however, the subsequent inner join to AS_ISSUES_TL on IB.ISSUE_ID effectively restricts the final result set to funds that do have a matching issue translation row.

Key Columns

Common Use Cases and Queries

The view is typically queried to list funds alongside their issue and managing organization details, to drive LOV queries in fund setup forms, or to feed downstream reporting on fund holdings. A representative query retrieving fund issue information follows:

SELECT fund_id, fund_name, fund_issue_id, fund_issue_name, fund_issue_sector, managing_org_party_name FROM apps.as_fund_details_v WHERE fund_issue_id IS NOT NULL ORDER BY fund_name;

Because the view depends on USERENV('LANG'), callers should ensure the session language (FND_LANGUAGE) is initialized before querying; running under a language with no matching TL rows will suppress results. For performance, filters on FUND_ID or ISSUE_GROUP_ID are preferable, and creating a custom index or materialized view on top of AS_FUNDS_B may help where large volumes of funds exist. The view should be treated as read-only; DML must target the base tables directly.