Search Results ame_approval_group_items
Overview
The AME_APPROVAL_GROUP_ITEMS table is a core configuration object within Oracle Approvals Management (AME), owned by the HR schema and categorized under the PER (Human Resources) product family. AME is the rules-based engine that determines approval routing, approval chains, and approver lists for transactions across Oracle E-Business Suite modules such as Purchasing, Payables, iExpenses, and HR. The AME_APPROVAL_GROUP_ITEMS table stores the individual items that make up an approval group — a reusable collection of approvers or parameters that AME evaluates when generating an approval list for a business transaction.
From a Data Vault modeling perspective, the heuristic classification derived from the foreign key structure treats this object as standalone. In practice, it functions as a satellite-type entity attached to the parent approval group, with its own surrogate key and effective-dating columns governing version history. This classification is offered as a modeling suggestion rather than a documented constraint.
Key Information Stored
The table contains 14 documented columns. The most significant are summarized below.
- APPROVAL_GROUP_ITEM_ID — Surrogate primary key for each approval group item row.
- APPROVAL_GROUP_ID — Identifies the parent approval group to which this item belongs; the principal business join column.
- PARAMETER_NAME — The name of the parameter associated with the item, used by AME when resolving approval logic.
- PARAMETER — The value of the named parameter, typically holding an approver identifier, list, or configuration token.
- ORDER_NUMBER — Determines the sequence in which items are processed within the group.
- START_DATE / END_DATE — Effective-dating columns that define the active validity window of each item.
- SECURITY_GROUP_ID — Foreign key referencing
FND_SECURITY_GROUPS, supporting multi-organization and data security partitioning. - OBJECT_VERSION_NUMBER — Optimistic locking column used by the Oracle Applications framework for concurrent update control.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN provide standard who-columns auditing.
The documented unique index, AME_APPROVAL_GROUP_ITEMS_PK, spans APPROVAL_GROUP_ITEM_ID, START_DATE, and END_DATE, indicating that effective-dated versions of an item are maintained across time. The business-key candidate therefore combines the surrogate identifier with the date range.
Common Use Cases and Queries
Consultants and developers query this table when troubleshooting approval routing, auditing approval group membership, or migrating AME setups between environments. A typical query retrieves all active items for a given group:
SELECT approval_group_item_id, parameter_name, parameter, order_number FROM ame_approval_group_items WHERE approval_group_id = :group_id AND SYSDATE BETWEEN start_date AND end_date ORDER BY order_number;- Effective-dating analysis: compare START_DATE/END_DATE across rows to reconstruct the historical composition of a group.
- Security validation: join to FND_SECURITY_GROUPS on SECURITY_GROUP_ID to confirm the correct operating unit context.
- Migration and comparison: extract items filtered by CREATION_DATE or LAST_UPDATE_DATE to identify recent configuration changes.
Because AME caches approval group definitions, changes to this table generally require the AME cache to be refreshed before they take effect in transactional routing.
Related Objects
The following objects are most significant when working with AME_APPROVAL_GROUP_ITEMS:
- FND_SECURITY_GROUPS — Referenced via SECURITY_GROUP_ID; enforces data security partitioning.
- AME_APPROVAL_GROUPS — Parent table joined on APPROVAL_GROUP_ID, defining the group header.
- AME_APPROVAL_GROUP_MEMBERS — Sibling table holding individual approver members of a group.
- AME_APPROVERS — Defines approver definitions referenced by group items and members.
- AME_RULES and AME_RULE_USAGES — Consume approval groups during rule evaluation to build approval lists.
- FND_USER — Joined indirectly via audit columns (CREATED_BY, LAST_UPDATED_BY) for change attribution.
Together, these objects form the AME configuration layer that Oracle EBS relies upon for deterministic, rules-driven approval processing.
-
Table: AME_APPROVAL_GROUP_ITEMS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.AME_APPROVAL_GROUP_ITEMS, object_name:AME_APPROVAL_GROUP_ITEMS, status:VALID, product: PER - Human Resources , description: To be Updated , implementation_dba_data: HR.AME_APPROVAL_GROUP_ITEMS ,
-
Table: AME_APPROVAL_GROUP_ITEMS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.AME_APPROVAL_GROUP_ITEMS, object_name:AME_APPROVAL_GROUP_ITEMS, status:VALID, product: PER - Human Resources , description: To be Updated , implementation_dba_data: HR.AME_APPROVAL_GROUP_ITEMS ,
-
APPS.AME_GPI_SHD SQL Statements
12.1.1
-
APPS.AME_GPI_SHD SQL Statements
12.2.2
-
VIEW: HR.AME_APPROVAL_GROUP_ITEMS#
12.2.2
owner:HR, object_type:VIEW, object_name:AME_APPROVAL_GROUP_ITEMS#, status:VALID,
-
APPS.AME_APPROVAL_GROUP_PKG SQL Statements
12.2.2
-
APPS.AME_APPROVAL_GROUP_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.AME_APPROVAL_GROUP_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AME_APPROVAL_GROUP_ITEMS, status:VALID,
-
VIEW: HR.AME_APPROVAL_GROUP_ITEMS#
12.2.2
-
SYNONYM: APPS.AME_APPROVAL_GROUP_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AME_APPROVAL_GROUP_ITEMS, status:VALID,
-
APPS.AME_GPI_BUS SQL Statements
12.1.1
-
APPS.AME_GPI_BUS SQL Statements
12.2.2
-
APPS.AME_GPI_INS SQL Statements
12.2.2
-
APPS.AME_GPI_INS SQL Statements
12.1.1
-
APPS.AME_APPROVER_GROUP_API SQL Statements
12.1.1
-
APPS.AME_APPROVER_GROUP_API SQL Statements
12.2.2
-
TABLE: HR.AME_APPROVAL_GROUP_ITEMS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.AME_APPROVAL_GROUP_ITEMS, object_name:AME_APPROVAL_GROUP_ITEMS, status:VALID,
-
TABLE: HR.AME_APPROVAL_GROUP_ITEMS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.AME_APPROVAL_GROUP_ITEMS, object_name:AME_APPROVAL_GROUP_ITEMS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.AME_GPI_SHD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AME_GPI_SHD, status:VALID,
-
PACKAGE BODY: APPS.AME_GPI_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_GPI_SHD, status:VALID,
-
APPS.AME_GPI_DEL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AME_UPDATE_USERNAME_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AME_UPDATE_USERNAME_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.AME_GPI_DEL SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AME_GPI_DEL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_GPI_DEL, status:VALID,
-
PACKAGE BODY: APPS.AME_GPI_SHD
12.1.1
-
PACKAGE BODY: APPS.AME_APG_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_APG_SHD, status:VALID,
-
PACKAGE BODY: APPS.AME_UPDATE_USERNAME_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_UPDATE_USERNAME_PKG, status:VALID,
-
PACKAGE BODY: APPS.AME_APG_SHD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AME_APG_SHD, status:VALID,
-
PACKAGE BODY: APPS.AME_GPI_UPD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AME_GPI_UPD, status:VALID,
-
PACKAGE BODY: APPS.AME_GPI_SHD
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.AME_GPI_DEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AME_GPI_DEL, status:VALID,
-
PACKAGE BODY: APPS.AME_GPI_UPD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_GPI_UPD, status:VALID,
-
PACKAGE BODY: APPS.AME_MIGRATION_REPORT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_MIGRATION_REPORT, status:VALID,
-
PACKAGE BODY: APPS.AME_MIGRATION_REPORT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AME_MIGRATION_REPORT, status:VALID,
-
PACKAGE BODY: APPS.AME_GPI_BUS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_GPI_BUS, status:VALID,
-
PACKAGE BODY: APPS.AME_GPI_INS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AME_GPI_INS, status:VALID,
-
PACKAGE BODY: APPS.AME_APPROVAL_GROUP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AME_APPROVAL_GROUP_PKG, status:VALID,
-
PACKAGE BODY: APPS.AME_APPROVAL_GROUP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_APPROVAL_GROUP_PKG, status:VALID,
-
PACKAGE BODY: APPS.AME_GPI_INS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_GPI_INS, status:VALID,
-
PACKAGE BODY: APPS.AME_GPI_BUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AME_GPI_BUS, status:VALID,
-
PACKAGE BODY: APPS.AME_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AME_API, status:VALID,
-
PACKAGE BODY: APPS.AME_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_API, status:VALID,
-
PACKAGE BODY: APPS.AME_APPROVER_GROUP_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AME_APPROVER_GROUP_API, status:VALID,
-
APPS.AME_APG_SHD SQL Statements
12.1.1
-
APPS.AME_APG_SHD SQL Statements
12.2.2