Search Results group_description
Overview
APPS.CST_CIMP_GROUP_ID is a Cost Management (CST) interface view in Oracle E-Business Suite, present in both release 12.1.1 and 12.2.2. It presents a consolidated, de-duplicated list of cost interface group identifiers that are currently eligible for processing by the Cost Interface Manager (CIM) concurrent programs. Rather than exposing transactional cost lines, the view acts as a driver or lookup layer: it answers the question "which interface group IDs have pending work that is ready to be picked up?" by scanning the four cost interface tables used by the Cost Management open interfaces.
Its functional role is closely tied to the column the user searched for, GROUP_DESCRIPTION. Because the view returns both the character-formatted group ID and its human-readable description, it supplies the context needed for parameter lists of CIM processes (for example, the "Cost Interface Group ID" parameter of the Cost Interface Manager and related cost import programs) and for diagnostic reports that let users identify which staged cost data belongs to which logical batch. In this sense it is a control/selection view rather than a data-entry or transactional view.
Underlying Base Objects
The view is owned by APPS and is defined over four interface synonyms, each mapping to a Cost Management interface table:
- CST_ITEM_CST_DTLS_INTERFACE — item cost detail interface lines
- CST_RESOURCE_COSTS_INTERFACE — resource cost interface lines
- CST_DEPT_OVERHEADS_INTERFACE — department overhead interface lines
- CST_RES_OVERHEADS_INTERFACE — resource overhead interface lines
The view issues a UNION over four SELECT statements, one per table, each projecting TO_CHAR(group_id), group_description, and a literal discriminator value (1, 2, or 3). The discriminator distinguishes the source table: 1 maps to the item cost detail interface, 2 to the resource costs interface, and 3 to both the department overheads and resource overheads interfaces. Each branch applies identical filter predicates: GROUP_ID IS NOT NULL, PROCESS_FLAG = 1, and ERROR_FLAG IS NULL. Consequently only groups flagged for processing and free of errors are surfaced.
Key Columns
- TO_CHAR(GROUP_ID) — the interface group identifier rendered as a character string. Group IDs tie together the individual interface rows that belong to one logical cost upload or batch, so all rows sharing a group ID are processed as a unit by the Cost Interface Manager. Returning it as a string normalizes the presentation across tables and simplifies use in parameter lists and report predicates.
- GROUP_DESCRIPTION — the descriptive label recorded on the interface rows for that group, providing the user-facing identity of the batch. This is the column referenced by the "group_description" search and is what allows users to recognize and select a group without knowing its numeric ID.
- Literal discriminator (1, 2, or 3) — an unnamed third column indicating which source interface the row originated from. It is useful for segmentation and for determining whether a group contains item, resource, or overhead cost data.
Common Use Cases and Queries
Typical usage includes populating selection lists and validating the group before invoking Cost Interface Manager processing, and troubleshooting which source interface is contributing to a pending batch. A simple listing query is:
SELECT TO_CHAR(group_id), group_description, 1 FROM CST_ITEM_CST_DTLS_INTERFACE WHERE group_id IS NOT NULL AND process_flag = 1 AND error_flag IS NULL UNION SELECT TO_CHAR(group_id), group_description, 2 FROM CST_RESOURCE_COSTS_INTERFACE WHERE group_id IS NOT NULL AND process_flag = 1 AND error_flag IS NULL UNION SELECT TO_CHAR(group_id), group_description, 3 FROM CST_DEPT_OVERHEADS_INTERFACE WHERE group_id IS NOT NULL AND process_flag = 1 AND error_flag IS NULL UNION SELECT TO_CHAR(group_id), group_description, 3 FROM CST_RES_OVERHEADS_INTERFACE WHERE group_id IS NOT NULL AND process_flag = 1 AND error_flag IS NULL;
Because it is a UNION and not a UNION ALL, duplicate group IDs arising where the same group spans multiple interface tables are collapsed automatically. A common refinement is SELECT DISTINCT group_id, group_description FROM apps.cst_cimp_group_id ORDER BY group_description for a clean pick-list. Practitioners also join this view back to the four interface tables on group_id to inspect individual ready-to-process rows, and filter on the discriminator when isolating, for example, only resource cost groups.
-
VIEW: APPS.CST_CIMP_GROUP_ID
12.1.1
-
VIEW: APPS.CST_CIMP_GROUP_ID
12.2.2
-
VIEW: BOM.CST_RESOURCE_COSTS_INTERFACE#
12.2.2
-
View: CST_CIMP_GROUP_ID
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_CIMP_GROUP_ID, object_name:CST_CIMP_GROUP_ID, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_CIMP_GROUP_ID ,
-
View: CST_CIMP_GROUP_ID
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_CIMP_GROUP_ID, object_name:CST_CIMP_GROUP_ID, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_CIMP_GROUP_ID ,
-
VIEW: IEM.IEM_SERVER_GROUPS#
12.2.2
-
View: XTR_RATE_GROUPS_V
12.2.2
product: XTR - Treasury , implementation_dba_data: Not implemented in this database ,
-
View: XTR_YIELD_CURVES_V
12.1.1
product: XTR - Treasury , implementation_dba_data: Not implemented in this database ,
-
View: EGO_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GROUPS_V, object_name:EGO_GROUPS_V, status:VALID, product: EGO - Advanced Product Catalog , description: View contains all the Groups. , implementation_dba_data: APPS.EGO_GROUPS_V ,
-
View: EGO_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GROUPS_V, object_name:EGO_GROUPS_V, status:VALID, product: EGO - Advanced Product Catalog , description: View contains all the Groups. , implementation_dba_data: APPS.EGO_GROUPS_V ,
-
View: AMW_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_GROUPS_V, object_name:AMW_GROUPS_V, status:VALID, product: AMW - Internal Controls Manager , implementation_dba_data: APPS.AMW_GROUPS_V ,
-
View: AMW_GROUPS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: BOM.CST_RES_OVERHEADS_INTERFACE#
12.2.2
-
VIEW: BOM.CST_DEPT_OVERHEADS_INTERFACE#
12.2.2
-
VIEW: APPS.AMW_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_GROUPS_V, object_name:AMW_GROUPS_V, status:VALID,
-
VIEW: APPS.EGO_GROUPS_V
12.1.1
-
VIEW: BOM.CST_ITEM_CST_DTLS_INTERFACE#
12.2.2
-
View: XTR_YIELD_CURVES_V
12.2.2
product: XTR - Treasury , implementation_dba_data: Not implemented in this database ,
-
View: XTR_RATE_GROUPS_V
12.1.1
product: XTR - Treasury , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_GPC_PE_ID_GRP_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the grading period information for a person ID group , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.EGO_GROUPS_V
12.2.2
-
VIEW: APPS.AMW_GROUPS_V
12.1.1
-
VIEW: APPS.IGS_AS_GPC_PE_ID_GRP_V
12.1.1
-
VIEW: APPS.ASO_PVT_HDR_PRICE_ADJ_UI_V
12.2.2
owner:APPS, object_type:VIEW, object_name:ASO_PVT_HDR_PRICE_ADJ_UI_V, status:VALID,
-
View: IGS_AS_GPC_PE_ID_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_GPC_PE_ID_GRP_V, object_name:IGS_AS_GPC_PE_ID_GRP_V, status:VALID, product: IGS - Student System , description: Holds the grading period information for a person ID group , implementation_dba_data: APPS.IGS_AS_GPC_PE_ID_GRP_V ,
-
VIEW: APPS.IGSFV_PERSON_GROUP_MEMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PERSON_GROUP_MEMBERS, object_name:IGSFV_PERSON_GROUP_MEMBERS, status:VALID,
-
VIEW: APPS.EGO_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GROUPS_V, object_name:EGO_GROUPS_V, status:VALID,
-
VIEW: IEM.IEM_SERVER_GROUPS#
12.2.2
owner:IEM, object_type:VIEW, object_name:IEM_SERVER_GROUPS#, status:VALID,
-
VIEW: APPS.EGO_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GROUPS_V, object_name:EGO_GROUPS_V, status:VALID,
-
VIEW: APPS.ASO_PVT_HDR_PRICE_ADJ_UI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:ASO_PVT_HDR_PRICE_ADJ_UI_V, status:VALID,
-
VIEW: APPS.IGSFV_DYN_PERSON_GROUP_SQLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_DYN_PERSON_GROUP_SQLS, object_name:IGSFV_DYN_PERSON_GROUP_SQLS, status:VALID,
-
VIEW: BOM.CST_DEPT_OVERHEADS_INTERFACE#
12.2.2
owner:BOM, object_type:VIEW, object_name:CST_DEPT_OVERHEADS_INTERFACE#, status:VALID,
-
VIEW: APPS.ASO_PVT_HEADER_CHARGES_UI_V
12.2.2
owner:APPS, object_type:VIEW, object_name:ASO_PVT_HEADER_CHARGES_UI_V, status:VALID,
-
VIEW: APPS.IGSBV_PERSON_GROUP_MEMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PERSON_GROUP_MEMBERS, object_name:IGSBV_PERSON_GROUP_MEMBERS, status:VALID,
-
VIEW: APPS.ASO_PVT_HEADER_CHARGES_UI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:ASO_PVT_HEADER_CHARGES_UI_V, status:VALID,
-
VIEW: APPS.IGS_AS_GPC_PE_ID_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_GPC_PE_ID_GRP_V, object_name:IGS_AS_GPC_PE_ID_GRP_V, status:VALID,
-
VIEW: APPS.AST_RS_GRP_VALID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RS_GRP_VALID_V, object_name:AST_RS_GRP_VALID_V, status:VALID,
-
VIEW: BOM.CST_RESOURCE_COSTS_INTERFACE#
12.2.2
owner:BOM, object_type:VIEW, object_name:CST_RESOURCE_COSTS_INTERFACE#, status:VALID,
-
VIEW: BOM.CST_RES_OVERHEADS_INTERFACE#
12.2.2
owner:BOM, object_type:VIEW, object_name:CST_RES_OVERHEADS_INTERFACE#, status:VALID,
-
VIEW: BOM.CST_ITEM_CST_DTLS_INTERFACE#
12.2.2
owner:BOM, object_type:VIEW, object_name:CST_ITEM_CST_DTLS_INTERFACE#, status:VALID,
-
View: IGSBV_PERSON_GROUP_MEMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PERSON_GROUP_MEMBERS, object_name:IGSBV_PERSON_GROUP_MEMBERS, status:VALID, product: IGS - Student System , description: This entity contains information about the persons belonging to a group. , implementation_dba_data: APPS.IGSBV_PERSON_GROUP_MEMBERS ,
-
VIEW: APPS.HR_DM_PHASE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_PHASE_ITEMS_V, object_name:HR_DM_PHASE_ITEMS_V, status:VALID,
-
VIEW: APPS.HR_DM_PHASE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_PHASE_ITEMS_V, object_name:HR_DM_PHASE_ITEMS_V, status:VALID,
-
VIEW: APPS.AST_RS_GRP_VALID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RS_GRP_VALID_V, object_name:AST_RS_GRP_VALID_V, status:VALID,
-
VIEW: APPS.IGSFV_ADVISING_RELATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ADVISING_RELATIONS, object_name:IGSFV_ADVISING_RELATIONS, status:VALID,
-
TABLE: IEM.IEM_SERVER_GROUPS
12.2.2
owner:IEM, object_type:TABLE, fnd_design_data:IEM.IEM_SERVER_GROUPS, object_name:IEM_SERVER_GROUPS, status:VALID,
-
View: IGSBV_ADVISING_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ADVISING_GROUPS, object_name:IGSBV_ADVISING_GROUPS, status:VALID, product: IGS - Student System , description: Stores advising group definition , implementation_dba_data: APPS.IGSBV_ADVISING_GROUPS ,
-
View: IGSFV_DYN_PERSON_GROUP_SQLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_DYN_PERSON_GROUP_SQLS, object_name:IGSFV_DYN_PERSON_GROUP_SQLS, status:VALID, product: IGS - Student System , description: This entity contains information about the SQLs of a dynamic person group. , implementation_dba_data: APPS.IGSFV_DYN_PERSON_GROUP_SQLS ,
-
View: IGSFV_DYN_PERSON_GROUP_SQLS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the SQLs of a dynamic person group. , implementation_dba_data: Not implemented in this database ,
-
TABLE: BOM.CST_RES_OVERHEADS_INTERFACE
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_RES_OVERHEADS_INTERFACE, object_name:CST_RES_OVERHEADS_INTERFACE, status:VALID,