Search Results action_information5
Overview
APPS.PAY_EMEA_BALS_ACTION_INFO_V is a reporting view in the Oracle E-Business Suite (EBS) Payroll module, delivered as part of the EMEA localization component of Oracle Payroll. It presents consolidated information about EMEA balance definitions and the balance adjustment or balance-related actions recorded against assignment actions during payroll processing. The view is not a base transactional entity; it is a query construct designed to expose a denormalized, human-readable narrative of EMEA balance processing activity so that it can be consumed by reports, concurrent programs, and downstream integrations without requiring callers to reconstruct the complex relationships between payroll actions, assignment actions, action interlocks, and descriptive flexfield-style action information.
Its central purpose is to translate the loosely structured PAY_ACTION_INFORMATION rows used by the EMEA balance engine into a stable, reportable projection containing a narrative label, a context identifier, a value in canonical numeric form, and a NI (National Insurance / statutory contribution) type indicator. Because it encapsulates multi-table joins and a number conversion routine, the view shields report developers from the internal mechanics of the payroll action information model.
Underlying Base Objects
The view is defined over the following documented base objects, all owned by or synonymed into APPS:
- PAY_ACTION_INFORMATION — the central store of key/value action attributes. The view joins this table twice: as
PAI2(aliased for the 'EMEA BALANCES' action information category, context type 'AAP') and asPAI1(aliased for the 'EMEA BALANCE DEFINITION' action information category, context type 'PA'). - PAY_ACTION_INTERLOCKS — links a locking action to a locked action. Here it correlates the balance action (
pai2.action_context_id) with an assignment action (paa1) and a second assignment action (paa2), establishing which payroll run actually performed the locked processing. - PAY_ASSIGNMENT_ACTIONS — represents actions executed against a specific assignment. It is referenced twice (
PAA1andPAA2) to resolve the payroll action and the balance definition context respectively. - PAY_PAYROLL_ACTIONS — the parent payroll run or reversal action. The view restricts results to action types 'P' (payroll run) and 'U' (undo/reversal), ensuring only completed or reversed processing is surfaced.
- FND_NUMBER — the Oracle Application Object Library number utility package. The
CANONICAL_TO_NUMBERfunction converts the stored character representation of the balance value (pai2.action_information4) into an actual NUMBER for aggregation and comparison.
Key Columns
- ACTION_CONTEXT_ID — the assignment action identifier that anchors the balance action. Serves as the primary correlation key back to
PAY_ASSIGNMENT_ACTIONSand is the basis for the ORDER BY clause. - NARRATIVE — derived via DECODE. When
pai2.action_information5is null, the balance definition description (pai1.action_information4) is returned verbatim; otherwise the definition is concatenated with theaction_information5value in parentheses, producing a readable label such as "Balance Definition (Attribute)". - NI_TYPE — sourced from
pai1.action_information5, classifies the balance definition according to the EMEA NI (National Insurance) balance typology. - CONTEXT — from
pai2.action_information2, identifies the processing context under which the balance action was recorded. - CONTEXT_DESCRIPTION — from
pai2.action_information6, a descriptive expansion of the context, used for display in reports. - VALUE — the canonical numeric balance value produced by
FND_NUMBER.CANONICAL_TO_NUMBER(pai2.action_information4).
Common Use Cases and Queries
Typical consumers include EMEA statutory reporting, payroll audit extracts, and balance reconciliation processes that need to explain how a balance definition was applied within a payroll run. Because the view already filters on the EMEA balance definition and balance information categories, queries can remain concise:
- Extracting all balance actions for an assignment action:
SELECT action_context_id, narrative, value FROM apps.pay_emea_bals_action_info_v WHERE action_context_id = :assignment_action_id; - Aggregating balance values by NI type across a payroll run by joining the view to
PAY_PAYROLL_ACTIONSandPAY_ASSIGNMENT_ACTIONS. - Building audit trails that show the narrative label alongside the context description for statutory submissions.
- Filtering on
NI_TYPEorCONTEXTto isolate particular contribution categories for reconciliation.
Because the view relies on the payroll action interlock chain, rows will only appear where the corresponding locked and locking actions have been successfully recorded; queries in mid-process payroll runs may therefore return incomplete results until processing finalizes.
-
VIEW: APPS.PAY_EMEA_BALS_ACTION_INFO_V
12.1.1
-
VIEW: APPS.PAY_IE_ELEMENT_F_INFO_V
12.1.1
-
VIEW: APPS.PAY_EMEA_BALS_ACTION_INFO_V
12.2.2
-
VIEW: APPS.PAY_APAC_BALS_ACTION_INFO_V
12.1.1
-
APPS.PAY_IN_PF_REPORTS SQL Statements
12.1.1
-
VIEW: APPS.PAY_IE_ELEMENT_F_INFO_V
12.2.2
-
VIEW: APPS.PAY_EMEA_USR_ELE_ACTION_INFO_V
12.2.2
-
VIEW: APPS.PAY_APAC_BALS_ACTION_INFO_V
12.2.2
-
View: PAY_EMEA_BALS_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMEA_BALS_ACTION_INFO_V, object_name:PAY_EMEA_BALS_ACTION_INFO_V, status:VALID, product: PAY - Payroll , description: Used to support online payslip , implementation_dba_data: APPS.PAY_EMEA_BALS_ACTION_INFO_V ,
-
VIEW: APPS.PAY_EMP_DETAILS_ACTION_INFO_V
12.1.1
-
View: PAY_EMEA_BALS_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMEA_BALS_ACTION_INFO_V, object_name:PAY_EMEA_BALS_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_EMEA_BALS_ACTION_INFO_V ,
-
APPS.PAY_SE_ALECTA_UPLOAD SQL Statements
12.2.2
-
APPS.PAY_IN_PF_REPORTS SQL Statements
12.2.2
-
VIEW: APPS.PAY_EMEA_USR_ELE_ACTION_INFO_V
12.1.1
-
VIEW: APPS.PAY_EMP_DETAILS_ACTION_INFO_V
12.2.2
-
View: PAY_IE_ELEMENT_F_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IE_ELEMENT_F_INFO_V, object_name:PAY_IE_ELEMENT_F_INFO_V, status:VALID, product: PAY - Payroll , description: Used in IE Payslip Advice Report , implementation_dba_data: APPS.PAY_IE_ELEMENT_F_INFO_V ,
-
VIEW: APPS.PAY_NL_PAY_DED_ACTION_INFO_V
12.2.2
-
VIEW: APPS.PAY_NL_PAY_DED_ACTION_INFO_V
12.1.1
-
VIEW: HR.PAY_SIMULATION_INFORMATION#
12.2.2
-
View: PAY_EMP_DETAILS_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMP_DETAILS_ACTION_INFO_V, object_name:PAY_EMP_DETAILS_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_EMP_DETAILS_ACTION_INFO_V ,
-
View: PAY_EMP_DETAILS_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMP_DETAILS_ACTION_INFO_V, object_name:PAY_EMP_DETAILS_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_EMP_DETAILS_ACTION_INFO_V ,
-
View: PAY_IE_ELEMENT_F_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IE_ELEMENT_F_INFO_V, object_name:PAY_IE_ELEMENT_F_INFO_V, status:VALID, product: PAY - Payroll , description: Used in IE Payslip Advice Report , implementation_dba_data: APPS.PAY_IE_ELEMENT_F_INFO_V ,
-
VIEW: HR.PAY_ACTION_INFORMATION#
12.2.2
-
VIEW: APPS.PER_HU_EMPLOYMENT_CERT_V
12.2.2
-
VIEW: APPS.PAY_APAC_PAYSLIP_ACCRUALS_V
12.1.1
-
APPS.PAY_CN_REPORT_PKG SQL Statements
12.1.1
-
View: PAY_APAC_BALS_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_APAC_BALS_ACTION_INFO_V, object_name:PAY_APAC_BALS_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_APAC_BALS_ACTION_INFO_V ,
-
View: PAY_APAC_BALS_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_APAC_BALS_ACTION_INFO_V, object_name:PAY_APAC_BALS_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_APAC_BALS_ACTION_INFO_V ,
-
VIEW: APPS.PAY_JP_ISDF_SOCIAL_DML_V
12.2.2
-
View: PAY_EMEA_USR_ELE_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMEA_USR_ELE_ACTION_INFO_V, object_name:PAY_EMEA_USR_ELE_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_EMEA_USR_ELE_ACTION_INFO_V ,
-
VIEW: APPS.PAY_JP_DEF_ASSACT_DML_V
12.1.1
-
VIEW: APPS.PAY_JP_ISDF_PACT_DML_V
12.1.1
-
VIEW: APPS.PAY_JP_ISDF_ASSACT_DML_V
12.2.2
-
PACKAGE: APPS.PAY_DK_RULES
12.1.1
-
VIEW: APPS.PAY_JP_DEF_PACT_DML_V
12.1.1
-
VIEW: APPS.PAY_JP_DEF_PACT_DML_V
12.2.2
-
VIEW: APPS.PER_HU_EMPLOYMENT_CERT_V
12.1.1
-
VIEW: APPS.PAY_JP_ISDF_SOCIAL_DML_V
12.1.1
-
APPS.PAY_CN_REPORT_PKG SQL Statements
12.2.2
-
VIEW: APPS.PAY_APAC_PAYSLIP_BALANCES2_V
12.2.2
-
VIEW: APPS.PAY_JP_DEF_ASSACT_DML_V
12.2.2
-
APPS.PAY_FI_ACRR SQL Statements
12.2.2
-
VIEW: APPS.PER_JP_WRKREG_PREV_JOB_V
12.2.2
-
PACKAGE: APPS.PAY_DK_RULES
12.2.2
-
VIEW: APPS.PAY_JP_ISDF_SPOUSE_DML_V
12.1.1
-
VIEW: APPS.PAY_APAC_PAYSLIP_BALANCES_V
12.1.1
-
VIEW: APPS.PAY_APAC_PAYSLIP_BALANCES_V
12.2.2
-
VIEW: APPS.PAY_JP_ISDF_NONLIFE_DML_V
12.1.1
-
VIEW: APPS.PAY_APAC_PAYSLIP_ELEMENTS_V
12.1.1
-
VIEW: APPS.PAY_JP_ISDF_LIFE_PENS_DML_V
12.2.2