Search Results process_interface_id
Overview
AMW_PROCESSES_INTERFACE is an interface (staging) table in the Oracle E-Business Suite Internal Controls Manager (AMW) module. As documented in the ETRM metadata, its stated purpose is to store Process attribute data during Process Import performed through WebADI (Web Applications Desktop Integrator). During an import run, records are written into this table, validated and processed, and subsequently transferred into the permanent AMW process structures. The module is flagged as obsolete in the documentation, and the object is noted as "Not implemented in this database," meaning it may not exist in every environment.
The table is owned by the AMW schema and, in the documented 12.1.1 physical schema, contains 51 columns. Its primary key is AMW_PROCESSES_INTERFACE_PK, defined on the PROCESS_INTERFACE_ID column, and a unique index AMW_PROCESSES_INTERFACE_U1 also exists on PROCESS_INTERFACE_ID. The mined Data Vault classification is standalone; from a modeling perspective, this suggests the table behaves neither as a durable hub nor as a link between persistent business entities, but rather as a transient staging satellite whose lifecycle is bounded by the import batch. This classification is a heuristic suggestion and should be validated against actual usage patterns.
Key Information Stored
The table centers on a surrogate primary key and a set of descriptive, status, and hierarchy attributes used to drive the import process.
- PROCESS_INTERFACE_ID — surrogate primary key (AMW_PROCESSES_INTERFACE_PK), also the business-key candidate via AMW_PROCESSES_INTERFACE_U1.
- BATCH_ID — groups the set of interface rows belonging to a single import run.
- PROCESSED_FLAG / ERROR_FLAG / INTERFACE_STATUS — processing state controls that indicate whether a row has been consumed, encountered errors, or remains pending.
- PROCESS_CODE / PROCESS_DISPLAY_NAME / PROCESS_SEQUENCE_NUMBER — business identifiers and ordering for the process being imported.
- PROCESS_TYPE / PROCESS_CATEGORY / PROCESS_ITEM_TYPE — classification attributes driving how the process is created.
- SIGNIFICANT_PROCESS_FLAG / STANDARD_PROCESS_FLAG / REVISE_PROCESS_FLAG / STANDARD_VARIATION — control flags governing process behavior.
- APPROVAL_STATUS / CERTIFICATION_STATUS — workflow-related statuses associated with the process.
- PROCESS_OWNER_ID / FINANCE_OWNER_ID / APPLICATION_OWNER_ID — owner references carried into the import.
- PARENT_PROCESS_ID / PARENT_PROCESS_CODE / PARENT_PROCESS_DISPLAY_NAME / HEADER_PARENT_PROCESS_ID — hierarchical parent references that reconstruct the process tree.
- CONTROL_ACTIVITY_TYPE / CLASSIFICATION — control categorization data.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — the standard EBS descriptive flexfield columns.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical usage centers on monitoring, troubleshooting, and auditing WebADI process imports. A common pattern retrieves all pending rows for a batch:
SELECT PROCESS_INTERFACE_ID, PROCESS_CODE, INTERFACE_STATUS FROM AMW_PROCESSES_INTERFACE WHERE BATCH_ID = :batch AND PROCESSED_FLAG = 'N';SELECT * FROM AMW_PROCESSES_INTERFACE WHERE ERROR_FLAG = 'Y' AND INTERFACE_STATUS = 'ERROR';SELECT BATCH_ID, COUNT(*), SUM(DECODE(ERROR_FLAG,'Y',1,0)) FROM AMW_PROCESSES_INTERFACE GROUP BY BATCH_ID;
These queries support reconciliation of import outcomes, identification of failed rows requiring correction and re-submission, and reporting on ownership or hierarchy data prior to promotion into the permanent process tables.
Related Objects
The metadata classifies this table as standalone with no documented foreign keys. Its principal external dependencies are therefore functional rather than referential:
- AMW_PROCESSES — the permanent process table into which interface rows are ultimately written, joined on process identity (PROCESS_CODE / PROCESS_ID equivalents).
- BATCH_ID grouping — shared with the WebADI import batch mechanism that populates this table.
- PROCESS_OWNER_ID / FINANCE_OWNER_ID / APPLICATION_OWNER_ID — reference personnel and application identities used during transformation into AMW process structures.
- PARENT_PROCESS_ID / HEADER_PARENT_PROCESS_ID — self-referencing attributes used to reconstruct the process hierarchy.
Because the object is documented as obsolete and not implemented in the reference database, DBAs should confirm its existence and current usage before relying on it for reporting.
-
APPS.AMW_LOAD_PROC_DATA SQL Statements
12.1.1
-
Table: AMW_PROCESSES_INTERFACE
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_PROCESSES_INTERFACE, object_name:AMW_PROCESSES_INTERFACE, status:VALID, product: AMW - Internal Controls Manager , description: This table is used for storing Process attribute data during Process Import by WebADI , implementation_dba_data: AMW.AMW_PROCESSES_INTERFACE ,
-
Table: AMW_PROCESSES_INTERFACE
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This table is used for storing Process attribute data during Process Import by WebADI , implementation_dba_data: Not implemented in this database ,
-
TABLE: AMW.AMW_PROCESSES_INTERFACE
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_PROCESSES_INTERFACE, object_name:AMW_PROCESSES_INTERFACE, status:VALID,
-
PACKAGE BODY: APPS.AMW_LOAD_PROC_DATA
12.1.1
-
APPS.AMW_LOAD_PROC_DATA dependencies on AMW_PROCESSES_INTERFACE
12.1.1
-
APPS.AMW_LOAD_PROC_DATA dependencies on AMW_PROCESS_S
12.1.1
-
APPS.AMW_LOAD_PROC_DATA dependencies on AMW_PROCESS
12.1.1
-
APPS.AMW_LOAD_PROC_DATA dependencies on FND_FILE
12.1.1
-
APPS.AMW_LOAD_PROC_DATA dependencies on STANDARD
12.1.1
-
APPS.AMW_LOAD_PROC_DATA dependencies on AMW_LATEST_REVISIONS_V
12.1.1
-
eTRM - AMW Tables and Views
12.1.1
description: This fact table stores the summary data related to the Significant Account Evaluation report ,
-
eTRM - AMW Tables and Views
12.1.1
description: This fact table stores the summary data related to the Significant Account Evaluation report ,