Search Results amw_process_objectives_b
Overview
AMW_PROCESS_OBJECTIVES_B is the base table that stores the non-translatable attributes of Process Objectives within the Oracle E-Business Suite Internal Controls Manager (AMW) module. In ETRM terms, a "process objective" is a control-oriented statement describing what a business process is intended to achieve; the AMW module uses these objectives as anchor points for risk assessment, control association, and compliance monitoring across an organization's process hierarchy. The table was introduced in the 12.1.1 code line and continues to be referenced in 12.2.2, though the product documentation explicitly flags the module as Obsolete, meaning it is retained for backward compatibility and historical data rather than for new functional deployments.
The ETRM metadata for this object describes it as a base table for non-translatable attributes, which implies the existence of a companion _TL table (for translated name/description fields). From a Data Vault modeling perspective, the heuristic classification mined from the foreign-key structure is standalone, suggesting that AMW_PROCESS_OBJECTIVES_B most closely resembles a hub-and-satellite combination collapsed into a single physical table. The presence of descriptive attributes (attribute1–attribute15, start/end dates, objective type) alongside the primary key makes it effectively a satellite sitting on the PROCESS_OBJECTIVE_ID hub.
Key Information Stored
The table exposes 28 documented columns in the 12.1.1 physical schema, owned by the AMW schema. The most significant columns are:
- PROCESS_OBJECTIVE_ID — surrogate primary key, enforced by
AMW_PROCESS_OBJECTIVES_B_PK. This is the join key used by all dependent tables. - OBJECTIVE_TYPE — classifies the objective (business, IT, compliance, or similar), driving downstream reporting and filtering.
- START_DATE / END_DATE — validity window for the objective, enabling time-sliced compliance reporting.
- SECURITY_GROUP_ID — foreign key to
FND_SECURITY_GROUPS, controlling multi-tenant or operating-unit visibility. - REQUESTOR_ID — references the user or role that owns the objective.
- OBJECT_VERSION_NUMBER — optimistic locking column used by the OAF/BC4J framework during concurrent updates.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — the standard Oracle EBS descriptive-flexfield pattern, used for configurable extensions.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard "who-audit" columns populated by
FND_STANDARDtriggers.
The unique index AMW_PROCESS_OBJECTIVES_B_U1 is defined on PROCESS_OBJECTIVE_ID, which mirrors the primary key rather than defining a separate business key. No independent business-key candidate is documented; in practice the human-readable objective name resides in the companion translation table.
Common Use Cases and Queries
Typical usage centers on internal audit and compliance dashboards. Analysts join AMW_PROCESS_OBJECTIVES_B to its translation table and to the association tables to reconstruct the objective-to-risk-to-control map. A representative query:
SELECT po.PROCESS_OBJECTIVE_ID,
po.OBJECTIVE_TYPE,
po.START_DATE,
po.END_DATE
FROM AMW.AMW_PROCESS_OBJECTIVES_B po
WHERE po.SECURITY_GROUP_ID = :p_security_group_id
AND TRUNC(SYSDATE) BETWEEN po.START_DATE AND NVL(po.END_DATE, SYSDATE);
Other scenarios include extracting new or changed objectives since the last ETL run using LAST_UPDATE_DATE, reconciling objective counts per OBJECTIVE_TYPE for management reporting, and auditing access by grouping through SECURITY_GROUP_ID. Because the module is obsolete, most production queries today are read-only reporting and historical migration extracts rather than transactional operations.
Related Objects
The foreign-key relationships documented in the ETRM metadata show this table as a parent to three dependent tables and a child of one:
- FND_SECURITY_GROUPS — parent; joined on
SECURITY_GROUP_ID. - AMW_RISK_CTRL_INTERFACE — child; references
PROCESS_OBJECTIVE_ID. - AMW_MEASURE_ASSOCIATIONS — child; references
PROCESS_OBJECTIVE_ID, linking objectives to measures. - AMW_OBJECTIVE_ASSOCIATIONS — child; references
PROCESS_OBJECTIVE_ID, linking objectives to processes. - AMW_PROCESS_OBJECTIVES_TL — implied companion translation table (not enumerated in the excerpt but consistent with the "_B" naming convention).
These relationships confirm that AMW_PROCESS_OBJECTIVES_B functions as the central hub for the AMW objective model, with downstream links driving the risk-and-control association graph used across the Internal Controls Manager module.
-
Table: AMW_PROCESS_OBJECTIVES_B
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Base table for Process Objectives non-translatable attributes , implementation_dba_data: Not implemented in this database ,
-
Table: AMW_PROCESS_OBJECTIVES_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_PROCESS_OBJECTIVES_B, object_name:AMW_PROCESS_OBJECTIVES_B, status:VALID, product: AMW - Internal Controls Manager , description: Base table for Process Objectives non-translatable attributes , implementation_dba_data: AMW.AMW_PROCESS_OBJECTIVES_B ,
-
SYNONYM: APPS.AMW_PROCESS_OBJECTIVES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_PROCESS_OBJECTIVES_B, status:VALID,
-
VIEW: APPS.AMW_PROCESS_OBJECTIVES_VL
12.1.1
-
TABLE: AMW.AMW_PROCESS_OBJECTIVES_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_PROCESS_OBJECTIVES_B, object_name:AMW_PROCESS_OBJECTIVES_B, status:VALID,
-
PACKAGE BODY: APPS.AMW_PROCESS_OBJECTIVES_B_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_PROCESS_OBJECTIVES_B_PKG, status:VALID,
-
View: AMW_PROCESS_OBJECTIVES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_OBJECTIVES_VL, object_name:AMW_PROCESS_OBJECTIVES_VL, status:VALID, product: AMW - Internal Controls Manager , description: This view returns information about Process Objectives , implementation_dba_data: APPS.AMW_PROCESS_OBJECTIVES_VL ,
-
APPS.AMW_PROCESS_OBJECTIVES_B_PKG SQL Statements
12.1.1
-
View: AMW_PROCESS_OBJECTIVES_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This view returns information about Process Objectives , implementation_dba_data: Not implemented in this database ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.AMW_PROCESS_OBJECTIVES_B_PKG
12.1.1
-
VIEW: APPS.AMW_PROCESS_OBJECTIVES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_OBJECTIVES_VL, object_name:AMW_PROCESS_OBJECTIVES_VL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.AMW_BASIC_RCM_V
12.1.1
owner:APPS, object_type:VIEW, object_name:AMW_BASIC_RCM_V, status:VALID,
-
APPS.AMW_PROCESS_OBJECTIVES_B_PKG dependencies on AMW_PROCESS_OBJECTIVES_B
12.1.1
-
APPS.AMW_PROCESS_OBJECTIVES_B_PKG dependencies on AMW_PROCESS_OBJECTIVES_TL
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 ,
-
PACKAGE BODY: APPS.AMW_LOAD_RC_DATA
12.1.1
-
APPS.AMW_PROCESS_OBJECTIVES_B_PKG dependencies on FND_API
12.1.1
-
PACKAGE BODY: APPS.AMW_LOAD_RCM_ORG_DATA
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 ,
-
12.1.1 DBA Data
12.1.1