Search Results as_issue_group_types
Overview
The AS_ISSUE_GROUP_TYPES table is a Sales Foundation (AS) reference and setup object owned by the OSM schema in Oracle E-Business Suite 12.1.1 and 12.2.2. As its description states, it holds Issue Group Types — the configurable categories used by Service/Depot and field service processes to classify and group issues raised against a customer, contact, or installed base asset. Because Issue Group Types drive downstream rules such as which contact or organization roles are permitted to raise an issue, the table functions as a controlled lookup rather than a transactional table.
Under the heuristic Data Vault classification mined from its foreign-key structure, AS_ISSUE_GROUP_TYPES is identified as a standalone object. In modeling terms, this suggests treating it as a reference or hub-style entity: it carries its own business key and attributes without participating as a link or satellite in a broader integration schema, apart from the security-group reference noted below.
The table is multilingual: translation rows are keyed by ISSUE_GROUP_TYPE_CODE combined with LANGUAGE, allowing the meaning and description text to be maintained per installed language.
Key Information Stored
The documented physical schema contains 31 columns. The most operationally significant are:
- ISSUE_GROUP_TYPE_CODE — the user-defined lookup code that uniquely identifies each issue group type. This column forms the leading component of the primary key and of the unique business-key index.
- LANGUAGE — the language of the translation row; paired with
ISSUE_GROUP_TYPE_CODE, it completes the primary keyAS_ISSUE_GROUP_TYPES_PKand the unique indexAS_ISSUE_GROUP_TYPES. - MEANING — the translatable display name of the issue group type.
- DESCRIPTION — a longer, translatable explanation of the type's purpose.
- ENABLED_FLAG — controls whether the type is selectable in the application.
- CLIENT_CONTACT_ENABLED_FLAG — indicates whether a client contact may be associated with this issue group type.
- CLIENT_ORG_ENABLED_FLAG — indicates whether a client organization may be associated with this issue group type.
- SOURCE_LANG — the language in which the row was originally created, used by the translation framework.
- SECURITY_GROUP_ID — the foreign key to
FND_SECURITY_GROUPSthat enforces multi-org/security-group access. - OBJECT_VERSION_NUMBER — the optimistic-locking column used by the Oracle Applications Framework.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — the standard descriptive-flexfield container for customer-specific extensions.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard WHO audit columns.
The surrogate primary key is AS_ISSUE_GROUP_TYPES_PK, while the unique business-key candidate is the combination of ISSUE_GROUP_TYPE_CODE and LANGUAGE.
Common Use Cases and Queries
Typical usage centers on populating and validating list-of-values for issue entry screens, and on joining issue transaction tables to the type definitions for reporting. A standard enabled-type lookup with the base-language meaning would be:
SELECT ISSUE_GROUP_TYPE_CODE, MEANING, DESCRIPTION
FROM AS_ISSUE_GROUP_TYPES
WHERE ENABLED_FLAG = 'Y'
AND LANGUAGE = USERENV('LANG')
ORDER BY MEANING;
To confirm which issue group types permit client contacts versus organizations:
SELECT ISSUE_GROUP_TYPE_CODE,
CLIENT_CONTACT_ENABLED_FLAG,
CLIENT_ORG_ENABLED_FLAG
FROM AS_ISSUE_GROUP_TYPES
WHERE LANGUAGE = USERENV('LANG');
Reporting frequently joins issues to this table on the code to collapse raw codes into readable labels, and checks the SECURITY_GROUP_ID to honor multi-org access.
Related Objects
- FND_SECURITY_GROUPS — referenced via
AS_ISSUE_GROUP_TYPES.SECURITY_GROUP_ID = FND_SECURITY_GROUPS.SECURITY_GROUP_ID; governs which responsibility can access each type. - AS_ISSUE_GROUP_TYPE_TL — the translation table that stores
MEANINGandDESCRIPTIONperLANGUAGE. - AS_ISSUE_TYPES — issue type definitions that are commonly associated with an issue group type.
- AS_ISSUES / CS_ISSUES — the transaction tables that reference
ISSUE_GROUP_TYPE_CODEwhen issuing is recorded. - AS_LOOKUPS / FND_LOOKUP_VALUES — historical lookup pattern; the AS table supersedes generic lookup storage for this domain.
- FND_FLEX_VALUES / FND_FLEX_VALUES_TL — backing structures for the
ATTRIBUTEdescriptive-flexfield columns.
-
Table: AS_ISSUE_GROUP_TYPES
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_ISSUE_GROUP_TYPES, object_name:AS_ISSUE_GROUP_TYPES, status:VALID, product: AS - Sales Foundation , description: Holds Issue Group Types , implementation_dba_data: OSM.AS_ISSUE_GROUP_TYPES ,
-
Table: AS_ISSUE_GROUP_TYPES
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_ISSUE_GROUP_TYPES, object_name:AS_ISSUE_GROUP_TYPES, status:VALID, product: AS - Sales Foundation , description: Holds Issue Group Types , implementation_dba_data: OSM.AS_ISSUE_GROUP_TYPES ,
-
SYNONYM: APPS.AS_ISSUE_GROUP_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_ISSUE_GROUP_TYPES, status:VALID,
-
VIEW: APPS.AS_ISSUE_GROUP_DETAILS_V
12.2.2
-
TABLE: OSM.AS_ISSUE_GROUP_TYPES
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_ISSUE_GROUP_TYPES, object_name:AS_ISSUE_GROUP_TYPES, status:VALID,
-
SYNONYM: APPS.AS_ISSUE_GROUP_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_ISSUE_GROUP_TYPES, status:VALID,
-
VIEW: OSM.AS_ISSUE_GROUP_TYPES#
12.2.2
owner:OSM, object_type:VIEW, object_name:AS_ISSUE_GROUP_TYPES#, status:VALID,
-
TABLE: OSM.AS_ISSUE_GROUP_TYPES
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_ISSUE_GROUP_TYPES, object_name:AS_ISSUE_GROUP_TYPES, status:VALID,
-
VIEW: APPS.AS_ISSUE_GROUP_DETAILS_V
12.1.1
-
VIEW: OSM.AS_ISSUE_GROUP_TYPES#
12.2.2
-
INDEX: OSM.AS_ISSUE_GROUP_TYPES
12.1.1
owner:OSM, object_type:INDEX, object_name:AS_ISSUE_GROUP_TYPES, status:VALID,
-
INDEX: OSM.AS_ISSUE_GROUP_TYPES
12.2.2
owner:OSM, object_type:INDEX, object_name:AS_ISSUE_GROUP_TYPES, status:VALID,
-
PACKAGE BODY: APPS.AS_ISSUE_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AS_ISSUE_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.AS_ISSUE_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AS_ISSUE_UTIL_PVT, status:VALID,
-
View: AS_ISSUE_GROUP_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_ISSUE_GROUP_DETAILS_V, object_name:AS_ISSUE_GROUP_DETAILS_V, status:VALID, product: AS - Sales Foundation , description: THIS VIEW SHOWS ISSUE GROUP DETAILS , implementation_dba_data: APPS.AS_ISSUE_GROUP_DETAILS_V ,
-
View: AS_ISSUE_GROUP_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_ISSUE_GROUP_DETAILS_V, object_name:AS_ISSUE_GROUP_DETAILS_V, status:VALID, product: AS - Sales Foundation , description: THIS VIEW SHOWS ISSUE GROUP DETAILS , implementation_dba_data: APPS.AS_ISSUE_GROUP_DETAILS_V ,
-
APPS.AS_ISSUE_UTIL_PVT SQL Statements
12.2.2
-
APPS.AS_ISSUE_UTIL_PVT SQL Statements
12.1.1
-
VIEW: APPS.AS_ISSUE_GROUP_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_ISSUE_GROUP_DETAILS_V, object_name:AS_ISSUE_GROUP_DETAILS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.AS_ISSUE_GROUP_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_ISSUE_GROUP_DETAILS_V, object_name:AS_ISSUE_GROUP_DETAILS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
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.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 FND Design Data
12.2.2
-
12.1.1 DBA Data
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
-
APPS.AS_ISSUE_UTIL_PVT dependencies on AS_ISSUE_GROUP_TYPES
12.1.1
-
APPS.AS_ISSUE_UTIL_PVT dependencies on AS_ISSUE_GROUP_TYPES
12.2.2
-
PACKAGE BODY: APPS.AS_ISSUE_UTIL_PVT
12.1.1
-
PACKAGE BODY: APPS.AS_ISSUE_UTIL_PVT
12.2.2
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1