Search Results action_context_id
Overview
APPS.PAY_IE_EMEA_BAL_V is a reporting view in the Oracle E-Business Suite Payroll module that consolidates Irish and broader EMEA (Europe, Middle East, and Africa) payroll balance information into a single, query-friendly structure. It is defined over the transactional tables that Oracle Payroll uses to store action-level information and interlock relationships, and it exposes derived balance data keyed to assignment action identifiers. The view is primarily used by statutory and regulatory reporting processes — most notably the Irish payroll reporting requirements that depend on EMEA balance definitions — as well as by integrations that need to extract calculated balance values per assignment action.
The view's defining characteristic is that it unifies two distinct data-retrieval paths: actions that are directly associated with a payroll action, and actions that are linked through interlock records. This dual-path design reflects the reality of Oracle Payroll processing, where balance definitions may be attached to a payroll action directly or may be reached only via the action interlock chain that controls concurrent payroll processing.
Underlying Base Objects
The view is defined over three documented base objects:
- PAY_ACTION_INFORMATION — the core table storing attribute/value pairs (action information categories and information numbers) attached to payroll actions. The view joins this table to itself twice, once as
PAI1(the balance definition side, categoryEMEA BALANCE DEFINITION) and once asPAI2(the balance value side, categoryEMEA BALANCES). - PAY_ASSIGNMENT_ACTIONS — the transactional record of actions applied to assignments; also joined twice (
PAA1,PAA2) in the interlock branch of the query. - PAY_ACTION_INTERLOCKS — the table recording locking and locked action relationships between concurrent payroll actions, used in the second branch of the view's UNION.
The two branches of the view are split by a predicate on PAI1.ACTION_INFORMATION1: the first branch returns rows where this column is null, and the second returns rows where it is not null, joining through the interlock table in that case.
Key Columns
- ASSIGNMENT_ACTION_ID — surfaced from
PAI2.ACTION_CONTEXT_ID; the identifier of the assignment action to which the balance value belongs. - BALANCE_NAME — derived from
SUBSTR(PAI1.ACTION_INFORMATION4, 1, 30); the name of the EMEA balance being reported. - NI_TYPE — derived from
SUBSTR(PAI1.ACTION_INFORMATION5, 1, 2); the National Insurance type classification associated with the balance. - BALANCE_VALUE — derived from
TO_NUMBER(PAI2.ACTION_INFORMATION4); the numeric value of the balance for the assignment action.
Notably, the user search term action_information1 appears in the view both as a join predicate (PAI1.ACTION_INFORMATION2 = PAI2.ACTION_INFORMATION1) and as the branch separator (PAI1.ACTION_INFORMATION1 IS NULL versus IS NOT NULL). It is therefore a structural discriminator rather than a projected column.
Common Use Cases and Queries
Typical usage includes Irish payroll statutory reporting, reconciliation of EMEA balance values against assignment actions, and downstream integration extracts. A representative query is:
SELECT assignment_action_id, balance_name, ni_type, balance_value FROM apps.pay_ie_emea_bal_v WHERE assignment_action_id = :assignment_action_id;SELECT balance_name, SUM(balance_value) FROM apps.pay_ie_emea_bal_v GROUP BY balance_name;SELECT * FROM apps.pay_ie_emea_bal_v WHERE ni_type = '01';
Because the view performs a UNION of two branches distinguished by the null status of ACTION_INFORMATION1, queries should be filtered by assignment action or payroll action to avoid full scans across both branches. Performance is generally acceptable when the assignment action identifier is supplied, since it maps directly to the context identifier on PAY_ACTION_INFORMATION.
-
APPS.PAY_US_HR_HELPDESK SQL Statements
12.2.2
-
VIEW: APPS.PAY_IE_EMEA_BAL_V
12.1.1
-
VIEW: APPS.PAY_IE_EMEA_BAL_V
12.2.2
-
VIEW: APPS.PAY_IE_ELEMENT_F_INFO_V
12.1.1
-
VIEW: APPS.PAY_IE_ELEMENT_F_INFO_V
12.2.2
-
APPS.PAY_IN_PF_REPORTS SQL Statements
12.1.1
-
PACKAGE: APPS.PAY_IN_EOY_ER_RETURNS
12.2.2
-
PACKAGE: APPS.PAY_IN_EOY_ER_RETURNS
12.1.1
-
APPS.PAY_IN_SOE SQL Statements
12.1.1
-
APPS.PAY_SE_CWCR SQL Statements
12.2.2
-
View: PAY_IE_EMEA_BAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IE_EMEA_BAL_V, object_name:PAY_IE_EMEA_BAL_V, status:VALID, product: PAY - Payroll , description: Used in IE Payslip Advice Report , implementation_dba_data: APPS.PAY_IE_EMEA_BAL_V ,
-
View: PAY_IE_EMEA_BAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IE_EMEA_BAL_V, object_name:PAY_IE_EMEA_BAL_V, status:VALID, product: PAY - Payroll , description: Used in IE Payslip Advice Report , implementation_dba_data: APPS.PAY_IE_EMEA_BAL_V ,
-
APPS.PAY_SE_CWCR SQL Statements
12.1.1
-
APPS.PAY_FI_ACRR SQL Statements
12.2.2
-
APPS.PAY_FI_ACRR SQL Statements
12.1.1
-
PACKAGE: APPS.PAY_IN_24Q_ER_RETURNS
12.1.1
-
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
-
APPS.PAY_IN_PF_REPORTS SQL Statements
12.2.2
-
APPS.PAY_FR_DADS_F_PKG SQL Statements
12.1.1
-
APPS.PAY_FR_DADS_F_PKG SQL Statements
12.2.2
-
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 ,
-
PACKAGE: APPS.PAY_IN_24Q_ER_RETURNS
12.2.2
-
PACKAGE BODY: APPS.PAY_US_HR_HELPDESK
12.2.2
-
VIEW: APPS.PAY_APAC_BALS_ACTION_INFO_V
12.1.1
-
VIEW: APPS.PAY_EMEA_BALS_ACTION_INFO_V
12.1.1
-
VIEW: APPS.PAY_APAC_BALS_ACTION_INFO_V
12.2.2
-
VIEW: APPS.PER_HU_EMPLOYMENT_CERT_V
12.2.2
-
View: PAY_NL_PAY_DED_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_NL_PAY_DED_ACTION_INFO_V, object_name:PAY_NL_PAY_DED_ACTION_INFO_V, status:VALID, product: PAY - Payroll , description: View Used in Dutch Payslip Report , implementation_dba_data: APPS.PAY_NL_PAY_DED_ACTION_INFO_V ,
-
View: PAY_NL_PAY_DED_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_NL_PAY_DED_ACTION_INFO_V, object_name:PAY_NL_PAY_DED_ACTION_INFO_V, status:VALID, product: PAY - Payroll , description: View Used in Dutch Payslip Report , implementation_dba_data: APPS.PAY_NL_PAY_DED_ACTION_INFO_V ,
-
APPS.PAY_SE_TAX_DECL_REPORT SQL Statements
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 ,
-
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: 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 ,
-
APPS.PAY_ZA_IRP5_IT3A_XMLP_PKG SQL Statements
12.2.2
-
APPS.PAY_SE_TAX_DECL_REPORT SQL Statements
12.2.2
-
VIEW: APPS.PAY_EMP_PAYSLIP_ACTION_INFO_V
12.1.1
-
VIEW: APPS.PAY_EMP_PAYSLIP_ACTION_INFO_V
12.2.2
-
VIEW: APPS.PAY_EMEA_USR_ELE_ACTION_INFO_V
12.2.2
-
VIEW: APPS.PAY_EMEA_USR_ELE_ACTION_INFO_V
12.1.1
-
APPS.PAY_IN_SOE SQL Statements
12.2.2
-
View: PAY_EMP_PAYSLIP_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMP_PAYSLIP_ACTION_INFO_V, object_name:PAY_EMP_PAYSLIP_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_EMP_PAYSLIP_ACTION_INFO_V ,
-
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_EMP_DETAILS_ACTION_INFO_V
12.1.1
-
VIEW: APPS.PAY_EMP_DETAILS_ACTION_INFO_V
12.2.2
-
PACKAGE: APPS.PAY_IN_24QC_ER_RETURNS
12.2.2
-
VIEW: APPS.PAY_JP_ITWB_ASSACT_LATEST_V
12.2.2
-
VIEW: APPS.PAY_EMEA_BALS_ACTION_INFO_V
12.2.2