Search Results ap_attribute1
Overview
The AMW_AP_INTERFACE table is a critical staging table within the Oracle E-Business Suite (EBS) Application Management Pack for Oracle E-Business Suite (AMW) module. Its primary role is to serve as an interface for bulk data uploads related to Audit Procedures. Specifically, it stores information imported via Web Application Desktop Integrator (WebADI), allowing auditors and compliance personnel to create or update multiple audit procedures and their associated steps efficiently from a spreadsheet. The table resides in the APPS_TS_INTERFACE tablespace, which is designated for transient interface data, indicating its function as a temporary holding area before data validation and processing into the application's core transactional tables.
Key Information Stored
The table's columns are designed to capture the full definition of an audit procedure and its steps as provided in an upload file. Key transactional columns include AP_NAME, AP_DESCRIPTION, and AP_APPROVAL_STATUS_CODE for the procedure header. For procedure steps, it stores AP_STEP_NAME, AP_STEP_DESCRIPTION, AP_STEP_SAMPLESIZE, and AP_STEP_SEQNUM. The CONTROL_NAME column, which was central to the user's search, holds the identifier (NUMBER) for an associated control selected from a List of Values (LoV) during the upload, linking the audit step to a specific internal control. Critical interface management columns are BATCH_ID (grouping rows from a single upload), AP_INTERFACE_ID (primary key), and flags for processing status (PROCESS_FLAG, ERROR_FLAG, INTERFACE_STATUS). Standard WHO columns (CREATED_BY, LAST_UPDATED_BY, etc.) and descriptive flexfield segments (AP_ATTRIBUTE1-6) are also present.
Common Use Cases and Queries
The primary use case is the bulk upload of audit procedure data. Administrators would use a WebADI template to populate columns like CONTROL_NAME and AP_STEP_NAME, upload the data into this interface table, and then run a concurrent program to validate and import the records into the main AMW tables. Common diagnostic and monitoring queries include checking for rows with errors or pending processing. For example, to find uploads related to a specific control or to troubleshoot failed records, one might use:
- SELECT batch_id, control_name, ap_name, interface_status FROM amw.amw_ap_interface WHERE error_flag = 'Y' AND process_flag = 'N';
- SELECT * FROM amw.amw_ap_interface WHERE control_name = <control_id> ORDER BY batch_id, ap_step_seqnum;
- To analyze upload history: SELECT batch_id, created_by, creation_date, COUNT(*) row_count, MIN(process_flag) FROM amw.amw_ap_interface GROUP BY batch_id, created_by, creation_date;
Related Objects
As an interface table, AMW_AP_INTERFACE is closely tied to the concurrent programs and PL/SQL logic that processes its data into the core AMW transactional tables, such as AMW_AUDIT_PROCEDURES and tables storing audit steps and control linkages. Its indexes, AMW_AP_INTERFACE_U1 (unique on AP_INTERFACE_ID) and AMW_AP_INTERFACE_N1 (non-unique on BATCH_ID, CREATED_BY), are designed to optimize data retrieval by batch and ensure data integrity. The table is also related to the FND_LOOKUP_VALUES table for validating the AP_APPROVAL_STATUS_CODE and to the underlying AMW controls table referenced by the CONTROL_NAME column.
-
TABLE: AMW.AMW_AP_INTERFACE
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AP_INTERFACE, object_name:AMW_AP_INTERFACE, status:VALID,
-
eTRM - AMW Tables and Views
12.1.1
description: This fact table stores the summary data related to the Significant Account Evaluation report ,