Search Results as_issue_groups_b_u1




Overview

OSM.AS_ISSUE_GROUPS_B is a seed data table in the Oracle E-Business Suite 12.1.1 / 12.2.2 service (TeleService / Field Service) schema. It stores the master definitions of issue groups — the categorization construct used to group, classify, and route service issues, notes, and related transactional records throughout the customer support and field service modules. As a "_B" (base) table, it holds the language-independent definition rows, while any translated or descriptive content is maintained separately. The table resides in the APPS_TS_SEED tablespace with a PCTFREE of 10, consistent with the Oracle Applications convention for seeded reference data.

From a Data Vault modeling perspective, the mined relationship metadata suggests classifying AS_ISSUE_GROUPS_B as a hub candidate. It carries a single-column surrogate primary key (ISSUE_GROUP_ID) with no mandatory foreign key dependencies of its own except a reference to FND_SECURITY_GROUPS, and it is referenced by downstream transactional tables, which is characteristic of a hub-and-satellite pattern.

Key Information Stored

The table contains 29 documented columns. The most operationally significant are:

Common Use Cases and Queries

Typical uses include reporting on issue categorization, validating seeded issue groups during implementations, and building validation lists for service request entry. A common pattern resolves the active issue groups of a given type:

SELECT issue_group_id, issue_group_type_code, start_date_active, end_date_active
FROM osm.as_issue_groups_b
WHERE issue_group_type_code = :p_type
AND SYSDATE BETWEEN NVL(start_date_active, SYSDATE)
AND NVL(end_date_active, SYSDATE + 1);

Another frequent query joins the base table to its related transactional tables to report issue volumes per group, using ISSUE_GROUP_ID as the join key against AS_FUNDS_B and AS_ISSUE_GROUP_IDFR. Security-filtered extracts commonly join SECURITY_GROUP_ID to FND_SECURITY_GROUPS to enforce row-level visibility.

Related Objects

The metadata identifies the following significant relationships:

  • FND_SECURITY_GROUPS — referenced through SECURITY_GROUP_ID, enforcing data partition security.
  • AS_FUNDS_B — references AS_ISSUE_GROUPS_B via ISSUE_GROUP_ID, linking funding records to their issue group.
  • AS_ISSUE_GROUP_IDFR — the multi-lingual (identifier) counterpart, also referencing ISSUE_GROUP_ID, holding translated or language-specific content.
  • AS_ISSUE_GROUPS_TL — the translated table conventionally paired with any _B table in EBS, storing language-specific names and descriptions keyed by ISSUE_GROUP_ID.
  • AS_ISSUE_GROUPS_B_PK / AS_ISSUE_GROUPS_B_U1 / AS_ISSUE_GROUPS_B_N1 — the primary key constraint and its supporting unique and non-unique indexes.