Search Results ieu_wp_action_maps
Overview
The IEU_WP_ACTION_MAPS table resides in the IEU schema and belongs to the Universal Work Queue (UWQ) module of Oracle E-Business Suite. It stores the configuration that maps work items presented in the Universal Work Queue to the actions, parameters, and responsible applications or responsibilities that govern how those items are processed. In practical terms, it is a configuration and control table that determines which action a UWQ user can launch against a given work item, in what sequence, and under what security context.
The table is physically documented in ETRM 12.2.2 with eighteen columns and a surrogate primary key, IEU_WP_ACTION_MAPS_PK, defined on WP_ACTION_MAP_ID. A unique index, IEU_WP_ACTION_MAPS_U1, is defined on the combination of WP_ACTION_MAP_ID and ZD_EDITION_NAME, which serves as a business-key candidate and reflects the editioning support introduced for multi-tenant and online patching environments. Heuristic Data Vault classification mined from the foreign-key structure suggests this object is satellite-leaning: it carries descriptive and configuration attributes that depend on a parent identity rather than acting as an independent hub or an associative link between two business entities.
Key Information Stored
The most significant columns fall into identity, scope, action definition, and audit categories:
WP_ACTION_MAP_ID— the surrogate primary key, generated by theIEU_WP_ACTION_MAPS_PKsequence. It uniquely identifies each action-map record and is the column other objects use to reference a mapping.ACTION_MAP_CODEandACTION_MAP_TYPE_CODE— the business name and category of the action being mapped. These codes drive which action launcher, function, or navigation target the UWQ invokes.ACTION_MAP_SEQUENCE— controls the display or execution ordering of actions when multiple maps qualify for the same work item.ACTION_PARAM_SET_ID— a foreign-key reference identifying the parameter set associated with the action map. This column defines the runtime arguments passed to the action.APPLICATION_IDandRESPONSIBILITY_ID— scope the mapping to a specific application and responsibility, allowing the same work queue to present different actions depending on the logged-in responsibility.SECURITY_GROUP_ID— a foreign key toFND_SECURITY_GROUPS, enforcing row-level access control consistent with EBS security group conventions.PANEL_SEC_CAT_CODE— categorises the panel or security grouping used to render the action in the UWQ user interface.NOT_VALID_FLAGandDEV_DATA_FLAG— status flags that mark a mapping as inactive or as development-only seed data.OBJECT_VERSION_NUMBER— the optimistic-locking column used by the EBS framework to detect concurrent updates.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— standard "WHO" audit columns present on nearly all EBS transactional and configuration tables.ZD_EDITION_NAME— the editioning column supporting online patching and multi-tenant deployments, and part of the unique business-key index.
Common Use Cases and Queries
Administrators and developers query this table when troubleshooting why a particular action does or does not appear in the Universal Work Queue, or when auditing the configuration of actions per responsibility. A typical retrieval lists active mappings for a given application and responsibility, ordered by sequence:
- Identifying all action maps available to a responsibility:
SELECT ACTION_MAP_CODE, ACTION_MAP_TYPE_CODE, ACTION_MAP_SEQUENCE FROM IEU.IEU_WP_ACTION_MAPS WHERE RESPONSIBILITY_ID = :resp_id AND APPLICATION_ID = :app_id AND NOT_VALID_FLAG = 'N' ORDER BY ACTION_MAP_SEQUENCE; - Locating the parameter set bound to a specific action:
SELECT ACTION_PARAM_SET_ID FROM IEU.IEU_WP_ACTION_MAPS WHERE WP_ACTION_MAP_ID = :id; - Auditing recently modified configuration: querying
LAST_UPDATED_BYandLAST_UPDATE_DATEto trace which administrator changed a mapping. - Reporting mappings by security group by joining to
FND_SECURITY_GROUPSonSECURITY_GROUP_ID.
Because the table is configuration rather than transactional, reporting is generally low-volume and focused on validation, migration, and impact analysis.
Related Objects
Several objects reference or depend on IEU_WP_ACTION_MAPS:
FND_SECURITY_GROUPS— referenced throughSECURITY_GROUP_ID, providing the security grouping context for each mapping.- The action parameter set object referenced by
ACTION_PARAM_SET_ID, which supplies the runtime arguments for the mapped action. - Other IEU Universal Work Queue configuration tables that consume
WP_ACTION_MAP_IDas a foreign key to associate work items, actions, or user-interface panels with a mapping. FND_APPLICATIONandFND_RESPONSIBILITY— logically referenced viaAPPLICATION_IDandRESPONSIBILITY_IDto scope mappings to the correct navigation context.
Together these relationships make IEU_WP_ACTION_MAPS the central configuration point that links UWQ work items to the actions, parameters, and security context required to process them.
-
Table: IEU_WP_ACTION_MAPS
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_ACTION_MAPS, object_name:IEU_WP_ACTION_MAPS, status:VALID, product: IEU - Universal Work Queue , description: UWQ Action-Maps. , implementation_dba_data: IEU.IEU_WP_ACTION_MAPS ,
-
Table: IEU_WP_ACTION_MAPS
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_ACTION_MAPS, object_name:IEU_WP_ACTION_MAPS, status:VALID, product: IEU - Universal Work Queue , description: UWQ Action-Maps. , implementation_dba_data: IEU.IEU_WP_ACTION_MAPS ,
-
APPS.IEU_WP_ACTION_PVT SQL Statements
12.1.1
-
APPS.IEU_WP_ACTION_PVT SQL Statements
12.2.2
-
VIEW: IEU.IEU_WP_ACTION_MAPS#
12.2.2
owner:IEU, object_type:VIEW, object_name:IEU_WP_ACTION_MAPS#, status:VALID,
-
SYNONYM: APPS.IEU_WP_ACTION_MAPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEU_WP_ACTION_MAPS, status:VALID,
-
TRIGGER: APPS.IEU_WP_ACTION_MAPS+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:IEU_WP_ACTION_MAPS+, status:VALID,
-
SYNONYM: APPS.IEU_WP_ACTION_MAPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEU_WP_ACTION_MAPS, status:VALID,
-
TRIGGER: APPS.IEU_WP_ACTION_MAPS+
12.2.2
-
APPS.IEU_WORK_ACTION_PVT SQL Statements
12.2.2
-
APPS.IEU_WORK_ACTION_PVT SQL Statements
12.1.1
-
APPS.IEU_WORK_PANEL_PUB SQL Statements
12.1.1
-
VIEW: IEU.IEU_WP_ACTION_MAPS#
12.2.2
-
APPS.IEU_WORK_PANEL_PUB SQL Statements
12.2.2
-
APPS.IEU_WORKPANEL_PVT SQL Statements
12.2.2
-
APPS.IEU_WORKPANEL_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IEU_WP_ACTION_PVT
12.1.1
-
FUNCTION: APPS.IEU_WP_ACTION_MAPS=
12.2.2
-
PACKAGE BODY: APPS.IEU_WP_ACTION_PVT
12.2.2
-
FUNCTION: APPS.IEU_WP_ACTION_MAPS=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:IEU_WP_ACTION_MAPS=, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.IEU_WP_ACTION_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IEU_WP_ACTION_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.IEU_WP_ACTION_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:IEU_WP_ACTION_PVT, 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.IEU_WORK_PROVIDER_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WORK_PROVIDER_PUB, status:VALID,
-
PACKAGE BODY: APPS.IEU_WORK_PROVIDER_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WORK_PROVIDER_PUB, status:VALID,
-
PACKAGE BODY: APPS.IEU_WORK_PANEL_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WORK_PANEL_PUB, status:VALID,
-
PACKAGE BODY: APPS.IEU_SEED_DATA_LOADER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_SEED_DATA_LOADER_PKG, status:VALID,
-
PACKAGE BODY: APPS.IEU_WORK_PANEL_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WORK_PANEL_PUB, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.IEU_SEED_DATA_LOADER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_SEED_DATA_LOADER_PKG, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.IEU_WP_ACTION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WP_ACTION_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEU_WORK_ACTION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WORK_ACTION_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEU_WORKPANEL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WORKPANEL_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEU_WORK_ACTION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WORK_ACTION_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEU_WP_ACTION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WP_ACTION_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEU_WORKPANEL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WORKPANEL_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.IEU_SEED_DATA_LOADER_PKG SQL Statements
12.2.2
-
TABLE: IEU.IEU_WP_ACTION_MAPS
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_ACTION_MAPS, object_name:IEU_WP_ACTION_MAPS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.IEU_SEED_DATA_LOADER_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IEU_WORK_PANEL_PUB
12.1.1