Search Results lns_event_actions
Overview
LNS_EVENT_ACTIONS is a Loans (LNS) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores actionable events defined for a given loan type and loan class. Each row represents a discrete action that may be triggered by an event recorded in LNS_EVENTS, together with the delivery mechanism, recipient routing, and scheduling parameters that govern how that action is executed. The table therefore acts as the configuration repository that links the event model of the Loans module to the notification and processing behavior expected by the institution.
From a dimensional modeling perspective, the mined foreign key structure suggests a satellite-leaning classification. The table carries descriptive attributes about event actions and is keyed by a surrogate identifier, while also pointing to parent entities such as LNS_EVENTS and LNS_LOAN_TYPES. This classification should be treated as a modeling suggestion rather than an EBS-imposed construct; the physical implementation remains a standard Oracle relational table owned by the LNS schema.
Key Information Stored
The table contains 26 documented columns. The surrogate primary key is EVENT_ACTION_ID, enforced by the constraint LNS_EVENT_ACTIONS_PK. A secondary unique index, LNS_EVENT_ACTIONS_U1, is defined on (EVENT_ACTION_ID, ZD_EDITION_NAME), which supports the editioning and multi-version characteristics of the 12.2.2 data model and can serve as a business-key candidate for edition-aware access paths.
The most significant columns include:
- EVENT_ACTION_ID — surrogate primary key and foreign key target for history records.
- EVENT_ID — foreign key to LNS_EVENTS, identifying the parent event.
- LOAN_TYPE_ID — foreign key to LNS_LOAN_TYPES, scoping the action to a loan type.
- EVENT_ACTION_NAME and DESCRIPTION — human-readable identification and explanation.
- ACTION_TYPE and SETUP_TYPE — control the nature and configuration category of the action.
- DELIVERY_METHOD — the channel through which the action is dispatched.
- API_NAME — the programmatic entry point invoked for the action.
- NOTIFICATION_TYPE, PRIMARY_RECIPIENT_TYPE, PRIMARY_RECIPIENT_NAME — notification definition and routing.
- SECONDARY_RECIPIENT_TYPE and SECONDARY_RECIPIENT_NAME — alternate or escalation recipients.
- PRIORITY_NUM, DAYS_PRIOR_NUM, ACTIVE_FOR_NUM — sequencing and timing controls.
- ENABLED_FLAG — activation state of the action.
- OBJECT_VERSION_NUMBER, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard audit and optimistic locking columns.
- ZD_EDITION_NAME — editioning discriminator used in 12.2.2.
Common Use Cases and Queries
Typical usage centers on verifying which actions are configured for a loan type, auditing notification routing, and troubleshooting missing or duplicated event processing. A representative query joining the action to its parent event follows:
- SELECT a.EVENT_ACTION_ID, a.EVENT_ACTION_NAME, a.ACTION_TYPE, a.DELIVERY_METHOD, a.ENABLED_FLAG FROM LNS.LNS_EVENT_ACTIONS a, LNS.LNS_EVENTS e WHERE a.EVENT_ID = e.EVENT_ID AND a.LOAN_TYPE_ID = :loan_type_id AND a.ENABLED_FLAG = 'Y';
- Reporting actions by delivery method and recipient to assess notification coverage.
- Reconciling configured actions against entries in LNS_EVT_ACTION_HISTORY_H to confirm execution history.
- Using PRIORITY_NUM combined with DAYS_PRIOR_NUM and ACTIVE_FOR_NUM to model reminder, escalation, and expiry schedules.
- Filtering on ZD_EDITION_NAME when querying under the 12.2.2 editioning model to avoid cross-edition row duplication.
Related Objects
The table participates in a small but tightly coupled set of relationships:
- LNS_EVENTS — parent event definition; joined on LNS_EVENT_ACTIONS.EVENT_ID = LNS_EVENTS.EVENT_ID.
- LNS_LOAN_TYPES — loan type lookup; joined on LNS_EVENT_ACTIONS.LOAN_TYPE_ID = LNS_LOAN_TYPES.LOAN_TYPE_ID.
- LNS_EVT_ACTION_HISTORY_H — history table referencing EVENT_ACTION_ID, providing an audit trail of action execution.
- LNS_EVENT_ACTIONS_PK — primary key constraint enforcing uniqueness of EVENT_ACTION_ID.
- LNS_EVENT_ACTIONS_U1 — unique index supporting edition-aware access on (EVENT_ACTION_ID, ZD_EDITION_NAME).
Together these objects support configuration of loan events, their actionable outcomes, and the historical record of actions taken.
-
Table: LNS_EVENT_ACTIONS
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_EVENT_ACTIONS, object_name:LNS_EVENT_ACTIONS, status:VALID, product: LNS - Loans , description: This table stores actionable events for a Loan type and loan class , implementation_dba_data: LNS.LNS_EVENT_ACTIONS ,
-
Table: LNS_EVENT_ACTIONS
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_EVENT_ACTIONS, object_name:LNS_EVENT_ACTIONS, status:VALID, product: LNS - Loans , description: This table stores actionable events for a Loan type and loan class , implementation_dba_data: LNS.LNS_EVENT_ACTIONS ,
-
VIEW: LNS.LNS_EVENT_ACTIONS#
12.2.2
owner:LNS, object_type:VIEW, object_name:LNS_EVENT_ACTIONS#, status:VALID,
-
SYNONYM: APPS.LNS_EVENT_ACTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:LNS_EVENT_ACTIONS, status:VALID,
-
SYNONYM: APPS.LNS_EVENT_ACTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:LNS_EVENT_ACTIONS, status:VALID,
-
TRIGGER: APPS.LNS_EVENT_ACTIONS+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:LNS_EVENT_ACTIONS+, status:VALID,
-
TRIGGER: APPS.LNS_EVENT_ACTIONS+
12.2.2
-
VIEW: LNS.LNS_EVENT_ACTIONS#
12.2.2
-
APPS.LNS_WORK_FLOW SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
FUNCTION: APPS.LNS_EVENT_ACTIONS=
12.2.2
-
Table: LNS_EVT_ACTION_HISTORY_H
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_EVT_ACTION_HISTORY_H, object_name:LNS_EVT_ACTION_HISTORY_H, status:VALID, product: LNS - Loans , description: This table stores the information about workflow actions performed for a Loan event , implementation_dba_data: LNS.LNS_EVT_ACTION_HISTORY_H ,
-
Table: LNS_EVT_ACTION_HISTORY_H
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_EVT_ACTION_HISTORY_H, object_name:LNS_EVT_ACTION_HISTORY_H, status:VALID, product: LNS - Loans , description: This table stores the information about workflow actions performed for a Loan event , implementation_dba_data: LNS.LNS_EVT_ACTION_HISTORY_H ,
-
Table: LNS_EVENTS
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_EVENTS, object_name:LNS_EVENTS, status:VALID, product: LNS - Loans , description: This table stores actionable events for a loan class , implementation_dba_data: LNS.LNS_EVENTS ,
-
Table: LNS_EVENTS
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_EVENTS, object_name:LNS_EVENTS, status:VALID, product: LNS - Loans , description: This table stores actionable events for a loan class , implementation_dba_data: LNS.LNS_EVENTS ,
-
FUNCTION: APPS.LNS_EVENT_ACTIONS=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:LNS_EVENT_ACTIONS=, status:VALID,
-
TABLE: LNS.LNS_EVENT_ACTIONS
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_EVENT_ACTIONS, object_name:LNS_EVENT_ACTIONS, status:VALID,
-
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
-
TABLE: LNS.LNS_EVENT_ACTIONS
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_EVENT_ACTIONS, object_name:LNS_EVENT_ACTIONS, 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
-
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.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.LNS_WORK_FLOW
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_WORK_FLOW, status:VALID,
-
PACKAGE BODY: APPS.LNS_WORK_FLOW
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_WORK_FLOW, status:VALID,
-
APPS.LNS_WORK_FLOW SQL Statements
12.2.2
-
eTRM - LNS Tables and Views
12.2.2
description: Loans Terms Table ,
-
eTRM - LNS Tables and Views
12.1.1
description: Loans Terms Table ,
-
PACKAGE BODY: APPS.LNS_WORK_FLOW
12.1.1
-
APPS.LNS_WORK_FLOW dependencies on LNS_EVENT_ACTIONS
12.2.2
-
APPS.LNS_WORK_FLOW dependencies on LNS_EVENT_ACTIONS
12.1.1
-
PACKAGE: APPS.LNS_WORK_FLOW
12.2.2
-
PACKAGE BODY: APPS.LNS_WORK_FLOW
12.2.2
-
APPS.LNS_WORK_FLOW dependencies on LNS_EVENTS
12.1.1
-
APPS.LNS_WORK_FLOW dependencies on LNS_EVENTS
12.2.2
-
APPS.LNS_WORK_FLOW dependencies on LNS_UTILITY_PUB
12.1.1
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
APPS.LNS_WORK_FLOW dependencies on LNS_LOAN_TYPES_VL
12.1.1
-
APPS.LNS_WORK_FLOW dependencies on LNS_LOAN_TYPES_VL
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.LNS_WORK_FLOW dependencies on LNS_LOAN_TYPES
12.1.1
-
APPS.LNS_WORK_FLOW dependencies on LNS_LOAN_TYPES
12.2.2
-
eTRM - LNS Tables and Views
12.1.1
description: Loans Terms Table ,
-
eTRM - LNS Tables and Views
12.2.2
description: Loans Terms Table ,