Search Results revise_process_flag
Overview
AMW.AMW_PROCESSES_INTERFACE is an interface (staging) table in the Oracle E-Business Suite ETRM (Enterprise Transaction and Risk Management) module. Its documented purpose is to store process attribute data during Process Import performed by WebADI. Rather than acting as a permanent transactional store, it functions as a landing area where inbound process definitions are uploaded, validated, and then published into the corresponding production process tables.
The table is owned by the AMW schema, resides in the APPS_TS_INTERFACE tablespace with PCTFREE 10, and reports a VALID status in the 12.1.1 documented physical schema with 51 columns. Its WebADI-based import role means it participates directly in batch upload workflows driven by Oracle's desktop integration framework.
Under the heuristic Data Vault classification mined from the foreign-key structure, this object is characterized as standalone — no inbound or outbound FK relationships were detected. As a modeling suggestion, this positions it closest to a transient staging structure rather than a hub, link, or satellite; it can be treated informally as a satellite-like interface entity keyed on its own surrogate identifier, with BATCH_ID providing the natural grouping key for each import run.
Key Information Stored
The surrogate primary key is PROCESS_INTERFACE_ID, whose uniqueness is enforced by the AMW_PROCESSES_INTERFACE_U1 unique index. A nonunique index, AMW_PROCESSES_INTERFACE_N1, covers BATCH_ID and CREATED_BY, reflecting the dominant access path of retrieving records by import batch.
The most significant columns include:
- PROCESS_INTERFACE_ID — surrogate identifier for each staging row; the primary key column.
- BATCH_ID — links each interface row to a specific WebADI import batch; the primary grouping attribute.
- PROCESS_SEQUENCE_NUMBER — the user-searched attribute; governs ordering of process records within the import payload.
- PROCESS_CODE / PROCESS_DISPLAY_NAME — business identifiers and labels for the process being imported.
- PARENT_PROCESS_ID / PARENT_PROCESS_CODE / PARENT_PROCESS_NAME — hierarchy attributes establishing parent-child relationships between processes.
- PROCESS_TYPE / PROCESS_CATEGORY / PROCESS_ITEM_TYPE — classification attributes controlling how the process is typed and categorized.
- SIGNIFICANT_PROCESS_FLAG / STANDARD_PROCESS_FLAG / REVISE_PROCESS_FLAG — business flags affecting downstream processing behavior.
- APPROVAL_STATUS / CERTIFICATION_STATUS / INTERFACE_STATUS — workflow and import state indicators.
- PROCESSED_FLAG / ERROR_FLAG — control columns showing whether a row has been published or failed validation.
- PROCESS_OWNER_ID / FINANCE_OWNER_ID / APPLICATION_OWNER_ID — ownership assignments for the process.
- The standard WHO columns (LAST_UPDATE_DATE, CREATED_BY, etc.) and the 15 ATTRIBUTE flexfield segments provide audit and extensibility.
Common Use Cases and Queries
Typical usage centers on monitoring and troubleshooting WebADI process imports. A frequent query identifies failed or unprocessed rows within a batch:
SELECT process_interface_id, process_code, process_display_name, interface_status, error_flag FROM amw.amw_processes_interface WHERE batch_id = :batch_id AND NVL(error_flag,'N') = 'Y';
Because users frequently search on PROCESS_SEQUENCE_NUMBER, a common pattern retrieves process hierarchy in intended order:
SELECT process_code, parent_process_code, process_sequence_number FROM amw.amw_processes_interface WHERE batch_id = :batch_id ORDER BY process_sequence_number;
Reporting scenarios include reconciliation of imported versus published processes, validating that all APPROVAL_STATUS values reached an approved state before load, and auditing process owner assignments before migration. The ATTRIBUTE_CATEGORY/ATTRIBUTE1–15 flexfield columns support client-specific reporting extensions.
Related Objects
Because the documented relationship data classifies this object as standalone, no foreign-key dependencies were mined. The most significant related objects are therefore inferred from its stated role:
- AMW_PROCESSES (or equivalent production process table) — the target table into which validated AMW_PROCESSES_INTERFACE rows are published, joined on the process business code.
- AMW_PROCESSES_INTERFACE_U1 / AMW_PROCESSES_INTERFACE_N1 — the unique and nonunique indexes supporting key and batch lookups.
- WebADI Process Import concurrent program — the process that populates BATCH_ID and drives row validation.
- AMW batch header tables — referenced via BATCH_ID to identify the originating import run.
- FND Descriptive Flexfields (AMW.AMW_PROCESSES_INTERFACE) — the registered flexfield consuming ATTRIBUTE_CATEGORY and ATTRIBUTE1–15.
-
APPS.AMW_LOAD_PROC_DATA SQL Statements
12.1.1
-
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
-
eTRM - AMW Tables and Views
12.1.1
description: This fact table stores the summary data related to the Significant Account Evaluation report ,