Search Results cn_imp_headers
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
CN_IMP_HEADERS is a transactional header table within the Oracle Incentive Compensation (CN) module of Oracle E-Business Suite, present in both release 12.1.1 and 12.2.2. The table stores control information for user-driven data imports, serving as the master record that defines how an external file is parsed, mapped, and staged before its contents are consumed by Incentive Compensation processing. Each row represents a single import definition or import run, capturing the source file, the delimiter conventions, the target import map, and the current processing state. From a Data Vault modeling perspective, the metadata's heuristic classification is standalone; that is, CN_IMP_HEADERS behaves as an independent hub-like entity with no documented parent foreign keys other than the operational SECURITY_GROUP_ID reference to FND_SECURITY_GROUPS. It anchors its own business identity and is referenced by dependent staging and detail structures rather than acting as a link or satellite.
Key Information Stored
The table is documented with 40 columns in the ETRM 12.2.2 physical schema. The most significant are:
- IMP_HEADER_ID — the surrogate primary key and the target of unique index CN_IMP_HEADERS_U1.
- NAME — the user-facing import identifier; enforced by unique index CN_IMP_HEADERS_U2, making it the principal business-key candidate.
- DESCRIPTION — free-text explanation of the import's purpose.
- IMPORT_TYPE_CODE — classifies the import mechanism or data category.
- SERVER_FLAG — indicates whether the source file resides on the server.
- USER_FILENAME and DATA_FILENAME — the original client-side and server-side/staged file names.
- TERMINATED_BY and ENCLOSED_BY — delimiter and text-qualifier characters used when parsing the source file.
- HEADINGS_FLAG — denotes whether the first record contains column headings.
- IMP_MAP_ID — links the import to its column mapping definition.
- SOURCE_COLUMN_NUM — position of the source column being interpreted.
- STATUS_CODE — current lifecycle state of the import.
- PROCESSED_ROW, FAILED_ROW, and STAGED_ROW — row-level progress and error counters for monitoring.
- OPERATION — the action the import performs on target data.
- OBJECT_VERSION_NUMBER, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard concurrency and audit columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the standard Oracle descriptive flexfield (DFF) segment.
- SECURITY_GROUP_ID — the only documented foreign key, referencing FND_SECURITY_GROUPS.
Common Use Cases and Queries
Typical uses include diagnosing failed or stalled imports, auditing who created or changed an import definition, and reporting on volume and error rates per import run.
Listing active imports by status:
SELECT imp_header_id, name, import_type_code, status_code,
processed_row, failed_row
FROM cn.cn_imp_headers
WHERE status_code = :p_status
ORDER BY creation_date DESC;
Identifying imports mapped to a given source file or mapping:
SELECT h.imp_header_id, h.name, h.user_filename, h.imp_map_id FROM cn.cn_imp_headers h WHERE h.imp_map_id = :p_map_id;
Resolving the owning security group, using the documented foreign key:
SELECT h.imp_header_id, h.name, g.security_group_id FROM cn.cn_imp_headers h JOIN fnd_security_groups g ON g.security_group_id = h.security_group_id;
Reporting on recent audit activity leverages the WHO columns and the DFF attributes for custom categorization.
Related Objects
- FND_SECURITY_GROUPS — referenced by CN_IMP_HEADERS.SECURITY_GROUP_ID; the sole documented foreign key relationship.
- CN_IMP_MAPPINGS / import map definitions — the column-mapping target identified by IMP_MAP_ID.
- CN_IMP_DETAILS / staging structures — detail rows associated with each header through IMP_HEADER_ID.
- Import loader and concurrent programs in the CN module — consume the control attributes (delimiters, headings flag, operation) defined on the header.
- Standard WHO/audit views and the CN module inquiry forms — surface header status and progress to end users.
-
Table: CN_IMP_HEADERS
12.1.1
owner:CN, object_type:TABLE, fnd_design_data:CN.CN_IMP_HEADERS, object_name:CN_IMP_HEADERS, status:VALID, product: CN - Incentive Compensation , description: CN_IMP_HEADERS contains information for user imports. , implementation_dba_data: CN.CN_IMP_HEADERS ,
-
Table: CN_IMP_HEADERS
12.2.2
owner:CN, object_type:TABLE, fnd_design_data:CN.CN_IMP_HEADERS, object_name:CN_IMP_HEADERS, status:VALID, product: CN - Incentive Compensation , description: CN_IMP_HEADERS contains information for user imports. , implementation_dba_data: CN.CN_IMP_HEADERS ,
-
APPS.CN_IMPORT_PVT SQL Statements
12.2.2
-
APPS.CN_IMPORT_PVT SQL Statements
12.1.1
-
APPS.CN_IMP_HEADERS_PVT SQL Statements
12.2.2
-
APPS.CN_IMP_HEADERS_PVT SQL Statements
12.1.1
-
SYNONYM: APPS.CN_IMP_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CN_IMP_HEADERS, status:VALID,
-
SYNONYM: APPS.CN_IMP_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CN_IMP_HEADERS, status:VALID,
-
VIEW: CN.CN_IMP_HEADERS#
12.2.2
owner:CN, object_type:VIEW, object_name:CN_IMP_HEADERS#, status:VALID,
-
APPS.CN_IMP_HEADERS_PKG SQL Statements
12.2.2
-
VIEW: CN.CN_IMP_HEADERS#
12.2.2
-
APPS.CN_IMP_HEADERS_PKG SQL Statements
12.1.1
-
TABLE: CN.CN_IMP_HEADERS
12.1.1
owner:CN, object_type:TABLE, fnd_design_data:CN.CN_IMP_HEADERS, object_name:CN_IMP_HEADERS, status:VALID,
-
TABLE: CN.CN_IMP_HEADERS
12.2.2
owner:CN, object_type:TABLE, fnd_design_data:CN.CN_IMP_HEADERS, object_name:CN_IMP_HEADERS, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_HEADERS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_HEADERS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_REV_CL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_REV_CL_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_HEADERS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_HEADERS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_REV_CL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_REV_CL_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_MAPS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_MAPS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_MAPS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_MAPS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_HEADERS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_HEADERS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_HEADERS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_HEADERS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_HIERARCHY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_HIERARCHY_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMPORT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMPORT_PVT, status:VALID,
-
APPS.CN_IMP_REV_CL_PVT SQL Statements
12.1.1
-
APPS.CN_IMP_REV_CL_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CN_IMP_HIERARCHY_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_HIERARCHY_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMPORT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMPORT_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_HEADERS_PVT
12.1.1
-
PACKAGE BODY: APPS.CN_IMP_HEADERS_PVT
12.2.2
-
PACKAGE BODY: APPS.CN_IMP_TRXAPI_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_TRXAPI_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_RULE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_RULE_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_RULE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_RULE_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_TRXAPI_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_IMP_TRXAPI_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_DIM_HIERARCHIES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_DIM_HIERARCHIES_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_DIM_HIERARCHIES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CN_DIM_HIERARCHIES_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_CALC_SQL_EXPS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CN_CALC_SQL_EXPS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_CALC_SQL_EXPS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_CALC_SQL_EXPS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_PURGE_TABLES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_PURGE_TABLES_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_IMP_HEADERS_PKG
12.2.2
-
PACKAGE BODY: APPS.CN_IMP_HEADERS_PKG
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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
-
PACKAGE BODY: APPS.CN_IMPORT_PVT
12.2.2