Search Results pay_action_interlocks
Overview
The PAY_ACTION_INTERLOCKS table is a core data object within the Oracle E-Business Suite Payroll module (PAY) for versions 12.1.1 and 12.2.2. It functions as a control mechanism for payroll processing rollback operations. Specifically, it stores interlock definitions that establish dependencies between assignment actions, which are the fundamental units of work in a payroll run. By defining which action locks another, the system can intelligently manage the reversal or rollback of processed payroll results, ensuring data integrity and preventing the rollback of a dependent action before its prerequisite.
Key Information Stored
The table's structure is intentionally concise, centered on the relationship between two assignment actions. Its primary key is a composite of two columns, both of which are foreign keys to the PAY_ASSIGNMENT_ACTIONS table. The critical columns are:
- LOCKING_ACTION_ID: Identifies the assignment action that must be rolled back before the dependent, or locked, action can be rolled back. This is the prerequisite action.
- LOCKED_ACTION_ID: Identifies the assignment action that is dependent on the locking action for rollback sequencing. This action cannot be rolled back until the locking action is.
Together, these two columns form a parent-child relationship for rollback purposes. The table does not typically store transactional payroll data but rather these critical procedural metadata relationships.
Common Use Cases and Queries
The primary use case is during payroll reversal or correction processes. When a user initiates a rollback for a specific assignment action, the payroll engine queries PAY_ACTION_INTERLOCKS to determine if any other actions are locked by it, enforcing a correct rollback order. For troubleshooting and audit purposes, a common query is to examine all interlocks for a specific payroll run or assignment. A sample SQL pattern is:
- Identifying dependencies for a given action:
SELECT locking_action_id, locked_action_id FROM pay_action_interlocks WHERE locking_action_id = &ACTION_ID OR locked_action_id = &ACTION_ID; - Joining with PAY_ASSIGNMENT_ACTIONS to get actionable details:
SELECT paa1.action_type locking_type, paa2.action_type locked_type FROM pay_action_interlocks pai, pay_assignment_actions paa1, pay_assignment_actions paa2 WHERE pai.locking_action_id = paa1.assignment_action_id AND pai.locked_action_id = paa2.assignment_action_id;
Related Objects
PAY_ACTION_INTERLOCKS has a direct and exclusive relationship with the PAY_ASSIGNMENT_ACTIONS table, as defined by its two foreign key constraints. All entries in PAY_ACTION_INTERLOCKS must reference valid assignment action IDs. This table is integral to the internal logic of the payroll engine, particularly the rollback programs and APIs within the Oracle Payroll package (PYUGEN, PAYROLL). While not typically accessed directly by standard reports, its data underpins the correctness of payroll reversal processes visible through the Payroll Process Results form and related diagnostic reports.
-
Table: PAY_ACTION_INTERLOCKS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ACTION_INTERLOCKS, object_name:PAY_ACTION_INTERLOCKS, status:VALID, product: PAY - Payroll , description: Assignment action interlock definitions to control rollback processing. , implementation_dba_data: HR.PAY_ACTION_INTERLOCKS ,
-
Table: PAY_ACTION_INTERLOCKS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ACTION_INTERLOCKS, object_name:PAY_ACTION_INTERLOCKS, status:VALID, product: PAY - Payroll , description: Assignment action interlock definitions to control rollback processing. , implementation_dba_data: HR.PAY_ACTION_INTERLOCKS ,
-
View: PAYBV_CHECK_PAYMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_CHECK_PAYMENTS, object_name:PAYBV_CHECK_PAYMENTS, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_CHECK_PAYMENTS ,
-
View: PAYBV_CHECK_PAYMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_CHECK_PAYMENTS, object_name:PAYBV_CHECK_PAYMENTS, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_CHECK_PAYMENTS ,
-
Table: PAY_ASSIGNMENT_ACTIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ASSIGNMENT_ACTIONS, object_name:PAY_ASSIGNMENT_ACTIONS, status:VALID, product: PAY - Payroll , description: Action or process results, showing which assignments have been processed by a specific payroll action, or process. , implementation_dba_data: HR.PAY_ASSIGNMENT_ACTIONS ,
-
Table: PAY_ASSIGNMENT_ACTIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ASSIGNMENT_ACTIONS, object_name:PAY_ASSIGNMENT_ACTIONS, status:VALID, product: PAY - Payroll , description: Action or process results, showing which assignments have been processed by a specific payroll action, or process. , implementation_dba_data: HR.PAY_ASSIGNMENT_ACTIONS ,
-
View: PAY_IE_EAR_DED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IE_EAR_DED_V, object_name:PAY_IE_EAR_DED_V, status:VALID, product: PAY - Payroll , description: Used in IE Payslip Advice Report , implementation_dba_data: APPS.PAY_IE_EAR_DED_V ,
-
View: PAY_PAYROLL_ACTIONS_V5
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PAYROLL_ACTIONS_V5, object_name:PAY_PAYROLL_ACTIONS_V5, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_PAYROLL_ACTIONS_V5 ,
-
View: PAY_PAYROLL_ACTIONS_V5
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PAYROLL_ACTIONS_V5, object_name:PAY_PAYROLL_ACTIONS_V5, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_PAYROLL_ACTIONS_V5 ,
-
View: PAY_IE_EAR_DED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IE_EAR_DED_V, object_name:PAY_IE_EAR_DED_V, status:VALID, product: PAY - Payroll , description: Used in IE Payslip Advice Report , implementation_dba_data: APPS.PAY_IE_EAR_DED_V ,
-
View: PAY_JP_LAST_ACT_FOR_PYJPRLDA_V
12.2.2
product: PAY - Payroll , description: This view is used for Japanese localization only. , implementation_dba_data: Not implemented in this database ,
-
View: PAY_JP_LAST_ACT_FOR_PYJPRLDA_V
12.1.1
product: PAY - Payroll , description: This view is used for Japanese localization only. , implementation_dba_data: Not implemented in this database ,
-
View: PAY_JP_PRE_ITAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_PRE_ITAX_V, object_name:PAY_JP_PRE_ITAX_V, status:VALID, product: PAY - Payroll , description: This view is used for Japanese Tax Entry form.This view is used for Japanese localization only. , implementation_dba_data: APPS.PAY_JP_PRE_ITAX_V ,
-
View: PAY_JP_PRE_ITAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_PRE_ITAX_V, object_name:PAY_JP_PRE_ITAX_V, status:VALID, product: PAY - Payroll , description: This view is used for Japanese Tax Entry form.This view is used for Japanese localization only. , implementation_dba_data: APPS.PAY_JP_PRE_ITAX_V ,
-
View: PAY_XLA_COST_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_XLA_COST_ACTIONS_V, object_name:PAY_XLA_COST_ACTIONS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_XLA_COST_ACTIONS_V ,
-
View: PAY_PRE_PAYMENTS_V4
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PRE_PAYMENTS_V4, object_name:PAY_PRE_PAYMENTS_V4, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_PRE_PAYMENTS_V4 ,
-
View: PAY_PRE_PAYMENTS_V4
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PRE_PAYMENTS_V4, object_name:PAY_PRE_PAYMENTS_V4, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_PRE_PAYMENTS_V4 ,
-
View: PAY_XLA_COST_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_XLA_COST_ACTIONS_V, object_name:PAY_XLA_COST_ACTIONS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_XLA_COST_ACTIONS_V ,
-
View: PAY_XLA_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_XLA_COSTS_V, object_name:PAY_XLA_COSTS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_XLA_COSTS_V ,
-
View: PAY_HK_ASG_PAYMENT_RUNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_HK_ASG_PAYMENT_RUNS_V, object_name:PAY_HK_ASG_PAYMENT_RUNS_V, status:VALID, product: PAY - Payroll , description: Hong Kong localisation view. , implementation_dba_data: APPS.PAY_HK_ASG_PAYMENT_RUNS_V ,
-
View: PAY_HK_ASG_PAYMENT_RUNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_HK_ASG_PAYMENT_RUNS_V, object_name:PAY_HK_ASG_PAYMENT_RUNS_V, status:VALID, product: PAY - Payroll , description: Hong Kong localisation view. , implementation_dba_data: APPS.PAY_HK_ASG_PAYMENT_RUNS_V ,
-
View: PAYBV_ACTION_INTERLOCKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_ACTION_INTERLOCKS_V, object_name:PAYBV_ACTION_INTERLOCKS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_ACTION_INTERLOCKS_V ,
-
View: PAYBV_ACTION_INTERLOCKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_ACTION_INTERLOCKS_V, object_name:PAYBV_ACTION_INTERLOCKS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_ACTION_INTERLOCKS_V ,
-
View: PAY_XLA_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_XLA_COSTS_V, object_name:PAY_XLA_COSTS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_XLA_COSTS_V ,
-
View: PAY_GB_SOE_MESSAGE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_GB_SOE_MESSAGE_V, object_name:PAY_GB_SOE_MESSAGE_V, status:VALID, product: PAY - Payroll , description: Report pay action message lines , implementation_dba_data: APPS.PAY_GB_SOE_MESSAGE_V ,
-
View: PAY_GB_SOE_MESSAGE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_GB_SOE_MESSAGE_V, object_name:PAY_GB_SOE_MESSAGE_V, status:VALID, product: PAY - Payroll , description: Report pay action message lines , implementation_dba_data: APPS.PAY_GB_SOE_MESSAGE_V ,
-
View: PAY_GB_ELEMENT_VALUES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_GB_ELEMENT_VALUES_V, object_name:PAY_GB_ELEMENT_VALUES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_GB_ELEMENT_VALUES_V ,
-
View: PAY_GB_ELEMENT_VALUES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_GB_ELEMENT_VALUES_V, object_name:PAY_GB_ELEMENT_VALUES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_GB_ELEMENT_VALUES_V ,
-
View: PAY_SG_ASG_PAYMENT_RUNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_SG_ASG_PAYMENT_RUNS_V, object_name:PAY_SG_ASG_PAYMENT_RUNS_V, status:VALID, product: PAY - Payroll , description: Singapore localisation view. , implementation_dba_data: APPS.PAY_SG_ASG_PAYMENT_RUNS_V ,
-
View: PAY_ZA_ASSIGNMENT_ACTIONS_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ZA_ASSIGNMENT_ACTIONS_V2, object_name:PAY_ZA_ASSIGNMENT_ACTIONS_V2, status:VALID, product: PAY - Payroll , description: View for the ZA Pay Advice Report based on the PAY_ASSIGNMENT_ACTIONS table. , implementation_dba_data: APPS.PAY_ZA_ASSIGNMENT_ACTIONS_V2 ,
-
View: PAY_IE_SOE_MESSAGE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IE_SOE_MESSAGE_V, object_name:PAY_IE_SOE_MESSAGE_V, status:VALID, product: PAY - Payroll , description: Used to display Messages in IE SOE Form , implementation_dba_data: APPS.PAY_IE_SOE_MESSAGE_V ,
-
View: PAY_JP_ITAX_WITHHELD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_WITHHELD_V, object_name:PAY_JP_ITAX_WITHHELD_V, status:VALID, product: PAY - Payroll , description: This view is used by Japanese statutory report of GENSEN CHOSYU HYO. , implementation_dba_data: APPS.PAY_JP_ITAX_WITHHELD_V ,
-
View: PAY_JP_ITAX_WITHHELD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_WITHHELD_V, object_name:PAY_JP_ITAX_WITHHELD_V, status:VALID, product: PAY - Payroll , description: This view is used by Japanese statutory report of GENSEN CHOSYU HYO. , implementation_dba_data: APPS.PAY_JP_ITAX_WITHHELD_V ,
-
View: PAY_IE_SOE_MESSAGE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IE_SOE_MESSAGE_V, object_name:PAY_IE_SOE_MESSAGE_V, status:VALID, product: PAY - Payroll , description: Used to display Messages in IE SOE Form , implementation_dba_data: APPS.PAY_IE_SOE_MESSAGE_V ,
-
View: PAY_JP_PRE_ITAX_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_PRE_ITAX_V1, object_name:PAY_JP_PRE_ITAX_V1, status:VALID, product: PAY - Payroll , description: This view is used by Japanese statutory report of PAYJPITT, PAYJPITW and PAYJPPRS and valueset. , implementation_dba_data: APPS.PAY_JP_PRE_ITAX_V1 ,
-
View: PAY_EMEA_TAX_DET_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMEA_TAX_DET_ACTION_INFO_V, object_name:PAY_EMEA_TAX_DET_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_EMEA_TAX_DET_ACTION_INFO_V ,
-
View: PAY_ASSIGNMENT_ACTIONS_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ASSIGNMENT_ACTIONS_V2, object_name:PAY_ASSIGNMENT_ACTIONS_V2, status:VALID, product: PAY - Payroll , description: View for the UK Pay Advice Report based on the PAY_ASSIGNMENT_ACTIONS table. , implementation_dba_data: APPS.PAY_ASSIGNMENT_ACTIONS_V2 ,
-
View: PAY_JP_PRE_ITAX_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_PRE_ITAX_V1, object_name:PAY_JP_PRE_ITAX_V1, status:VALID, product: PAY - Payroll , description: This view is used by Japanese statutory report of PAYJPITT, PAYJPITW and PAYJPPRS and valueset. , implementation_dba_data: APPS.PAY_JP_PRE_ITAX_V1 ,
-
View: PAY_ZA_ASSIGNMENT_ACTIONS_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ZA_ASSIGNMENT_ACTIONS_V2, object_name:PAY_ZA_ASSIGNMENT_ACTIONS_V2, status:VALID, product: PAY - Payroll , description: View for the ZA Pay Advice Report based on the PAY_ASSIGNMENT_ACTIONS table. , implementation_dba_data: APPS.PAY_ZA_ASSIGNMENT_ACTIONS_V2 ,
-
View: PAY_XLA_PAYMENT_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_XLA_PAYMENT_COSTS_V, object_name:PAY_XLA_PAYMENT_COSTS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_XLA_PAYMENT_COSTS_V ,
-
View: PAY_XLA_PAYMENT_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_XLA_PAYMENT_COSTS_V, object_name:PAY_XLA_PAYMENT_COSTS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_XLA_PAYMENT_COSTS_V ,
-
View: PAY_SG_ASG_PAYMENT_RUNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_SG_ASG_PAYMENT_RUNS_V, object_name:PAY_SG_ASG_PAYMENT_RUNS_V, status:VALID, product: PAY - Payroll , description: Singapore localisation view. , implementation_dba_data: APPS.PAY_SG_ASG_PAYMENT_RUNS_V ,
-
View: PAY_EMEA_TAX_DET_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMEA_TAX_DET_ACTION_INFO_V, object_name:PAY_EMEA_TAX_DET_ACTION_INFO_V, status:VALID, product: PAY - Payroll , description: Used to support online payslip , implementation_dba_data: APPS.PAY_EMEA_TAX_DET_ACTION_INFO_V ,
-
View: PAY_IN_ARCH_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IN_ARCH_ACTIONS_V, object_name:PAY_IN_ARCH_ACTIONS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_IN_ARCH_ACTIONS_V ,
-
View: PAY_CN_ARCH_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CN_ARCH_ACTIONS_V, object_name:PAY_CN_ARCH_ACTIONS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_CN_ARCH_ACTIONS_V ,
-
View: PAY_ASSIGNMENT_ACTIONS_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ASSIGNMENT_ACTIONS_V2, object_name:PAY_ASSIGNMENT_ACTIONS_V2, status:VALID, product: PAY - Payroll , description: View for the UK Pay Advice Report based on the PAY_ASSIGNMENT_ACTIONS table. , implementation_dba_data: APPS.PAY_ASSIGNMENT_ACTIONS_V2 ,
-
View: PAY_GB_ASSIGNMENT_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_GB_ASSIGNMENT_ACTIONS_V, object_name:PAY_GB_ASSIGNMENT_ACTIONS_V, status:VALID, product: PAY - Payroll , description: View for the UK Pay Advice Report based on the PAY_ASSIGNMENT_ACTIONS table. , implementation_dba_data: APPS.PAY_GB_ASSIGNMENT_ACTIONS_V ,
-
View: PAY_GB_ASSIGNMENT_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_GB_ASSIGNMENT_ACTIONS_V, object_name:PAY_GB_ASSIGNMENT_ACTIONS_V, status:VALID, product: PAY - Payroll , description: View for the UK Pay Advice Report based on the PAY_ASSIGNMENT_ACTIONS table. , implementation_dba_data: APPS.PAY_GB_ASSIGNMENT_ACTIONS_V ,
-
View: PAY_IN_ARCH_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IN_ARCH_ACTIONS_V, object_name:PAY_IN_ARCH_ACTIONS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_IN_ARCH_ACTIONS_V ,
-
View: PAY_NZ_ASG_PAYMENT_RUNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_NZ_ASG_PAYMENT_RUNS_V, object_name:PAY_NZ_ASG_PAYMENT_RUNS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_NZ_ASG_PAYMENT_RUNS_V ,