Search Results ams_act_change_req_items
Overview
The AMS_ACT_CHANGE_REQ_ITEMS table resides in the AMS (Marketing) schema and is a core component of Oracle E-Business Suite's Marketing module (AMS). It functions as a change-tracking repository that stores individual field-level modifications requested against an already-active marketing activity, such as a Promotion, Event, or Campaign. In Oracle EBS, once a marketing activity is activated and flowing through its lifecycle, certain attributes cannot be edited directly. Instead, a formal change request must be raised, routed for approval, and processed through workflow. This table captures the granular details of each such request — specifically, which column on the activity is being changed, its old value, and its new value.
The table serves as a transactional detail store tied to workflow-driven approval requests. Its role is analogous to an audit/change-item line table within the AMS workflow architecture. Under a heuristic Data Vault classification mined from its foreign key structure, this table leans toward a satellite pattern. This is a modeling suggestion: the table records descriptive, changing attributes (old/new values, descriptions) that are dependent on and contextualized by a parent workflow request key, rather than acting as an independent business hub or a pure many-to-many link.
Key Information Stored
The table contains 13 documented columns. The most operationally significant ones are summarized below.
- ACTIVITY_CHANGE_REQ_ITEM_ID — The surrogate primary key, enforced by the unique index AMS_ACT_CHANGE_REQ_ITEMS_PK and mirrored by the business-key candidate AMS_ACT_CHANGE_REQ_ITEMS_U1. It uniquely identifies each individual change line.
- ACTIVITY_WF_REQUEST_ID — Foreign key to AMS_ACT_WF_REQUESTS. This links the change line back to its parent workflow request, establishing the change-item-to-request relationship.
- USER_COLUMN_NAME — The name of the activity attribute (column) being modified by this request line.
- COLUMN_OLD_VALUE — The current value of the attribute prior to the requested change.
- COLUMN_NEW_VALUE — The proposed value that the requester wants applied once approved.
- DESCRIPTION — Free-text explanation or justification accompanying the change item.
- SECURITY_GROUP_ID — Foreign key to FND_SECURITY_GROUPS; governs multi-org/security-group data segregation.
- OBJECT_VERSION_NUMBER — Optimistic locking token for concurrent update control (standard EBS OAF convention).
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — Standard EBS WHO columns providing audit trail and accountability.
The surrogate key (ACTIVITY_CHANGE_REQ_ITEM_ID) is distinct from business-key semantics; because the same U1 index covers the same column, no separate natural business key is documented, so the surrogate identifier doubles as the uniqueness constraint.
Common Use Cases and Queries
Typical usage centers on auditing and reporting change requests against active activities. A frequent query retrieves all change lines for a given workflow request:
- Change-request audit trail — Join this table to AMS_ACT_WF_REQUESTS on ACTIVITY_WF_REQUEST_ID to report which fields were requested for change and their before/after values.
- Approval workflow reporting — Aggregate change items per request to measure volume and scope of change activity.
- Pending vs. applied value comparison — Compare COLUMN_OLD_VALUE and COLUMN_NEW_VALUE to analyze proposed modifications.
Sample pattern (illustrative):
SELECT i.ACTIVITY_CHANGE_REQ_ITEM_ID, i.USER_COLUMN_NAME, i.COLUMN_OLD_VALUE, i.COLUMN_NEW_VALUE, i.DESCRIPTION FROM AMS.AMS_ACT_CHANGE_REQ_ITEMS i WHERE i.ACTIVITY_WF_REQUEST_ID = :request_id;- Joining to
AMS_ACT_WF_REQUESTS r ON i.ACTIVITY_WF_REQUEST_ID = r.ACTIVITY_WF_REQUEST_IDenriches results with request-level metadata. - Filtering by
SECURITY_GROUP_IDenforces security-group isolation in multi-org reporting.
Related Objects
The following objects are most significant to this table based on documented foreign key relationships and lifecycle dependency.
- AMS_ACT_WF_REQUESTS — Parent workflow request table; joined via ACTIVITY_WF_REQUEST_ID. This is the primary upstream entity defining the change request context.
- FND_SECURITY_GROUPS — Joined via SECURITY_GROUP_ID to resolve security-group ownership and data partition.
- AMS_ACT_CHANGE_REQ_ITEMS_PK / _U1 — Indexes enforcing uniqueness on ACTIVITY_CHANGE_REQ_ITEM_ID.
- AMS Activity base tables (e.g., AMS_ACTIVITIES and associated detail tables) — The targets whose attributes are represented by USER_COLUMN_NAME; indirectly referenced through the workflow request.
- AMS Marketing workflow/approval APIs — Process these change items during activity modification approvals.
Administrators and developers should treat this object as a satellite detail table always accessed in the context of its parent workflow request, with security-group filtering applied for correct multi-org visibility.
-
Table: AMS_ACT_CHANGE_REQ_ITEMS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_CHANGE_REQ_ITEMS, object_name:AMS_ACT_CHANGE_REQ_ITEMS, status:VALID, product: AMS - Marketing , description: This table is populated when an activity (Promotion, Event etc.) is active andt some information must be changed which requires a change request. , implementation_dba_data: AMS.AMS_ACT_CHANGE_REQ_ITEMS ,
-
Table: AMS_ACT_CHANGE_REQ_ITEMS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_CHANGE_REQ_ITEMS, object_name:AMS_ACT_CHANGE_REQ_ITEMS, status:VALID, product: AMS - Marketing , description: This table is populated when an activity (Promotion, Event etc.) is active andt some information must be changed which requires a change request. , implementation_dba_data: AMS.AMS_ACT_CHANGE_REQ_ITEMS ,
-
SYNONYM: APPS.AMS_ACT_CHANGE_REQ_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_ACT_CHANGE_REQ_ITEMS, status:VALID,
-
SYNONYM: APPS.AMS_ACT_CHANGE_REQ_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_ACT_CHANGE_REQ_ITEMS, status:VALID,
-
VIEW: AMS.AMS_ACT_CHANGE_REQ_ITEMS#
12.2.2
owner:AMS, object_type:VIEW, object_name:AMS_ACT_CHANGE_REQ_ITEMS#, status:VALID,
-
VIEW: AMS.AMS_ACT_CHANGE_REQ_ITEMS#
12.2.2
-
TABLE: AMS.AMS_ACT_CHANGE_REQ_ITEMS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_CHANGE_REQ_ITEMS, object_name:AMS_ACT_CHANGE_REQ_ITEMS, status:VALID,
-
TABLE: AMS.AMS_ACT_CHANGE_REQ_ITEMS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_CHANGE_REQ_ITEMS, object_name:AMS_ACT_CHANGE_REQ_ITEMS, status:VALID,
-
Table: AMS_ACT_WF_REQUESTS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_WF_REQUESTS, object_name:AMS_ACT_WF_REQUESTS, status:VALID, product: AMS - Marketing , description: Stores all requests that have been submitted to Oracle Workflow inside Oracle Marketing for the apprkoval Process. , implementation_dba_data: AMS.AMS_ACT_WF_REQUESTS ,
-
Table: AMS_ACT_WF_REQUESTS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_WF_REQUESTS, object_name:AMS_ACT_WF_REQUESTS, status:VALID, product: AMS - Marketing , description: Stores all requests that have been submitted to Oracle Workflow inside Oracle Marketing for the apprkoval Process. , implementation_dba_data: AMS.AMS_ACT_WF_REQUESTS ,
-
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
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - AMS Tables and Views
12.2.2
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
eTRM - AMS Tables and Views
12.1.1
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - AMS Tables and Views
12.2.2
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
eTRM - AMS Tables and Views
12.1.1
description: This table is used to store tracking data for web advertisement and offer type schedules ,