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 ,
-
APPS.PAY_EOSURVEY_PKG dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_FR_SICKNESS_CALC dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_BALANCE_PKG dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_CA_T4A_MAG dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_AE_CHEQUE_REPORT dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_HK_PAYSLIP_ARCHIVE dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_US_EMP_BALADJ_CLEANUP dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_MX_SUBSIDY_EMP_PD_RPT dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_HK_IR56_MAGTAPE dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_SG_SOE dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_CA_EOY_RL1_CANCELLED_PKG dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_AE_CHEQUE_REPORT dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_ARCHIVE_CHEQUEWRITER dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_NZ_SOE_PKG dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_IN_SOE_PKG dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_NL_TAXOFFICE_FILE dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_IN_24QC_ARCHIVE dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_P45_PKG dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_AU_PAYMENT_SUMMARY_AMEND dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_ASSIGNMENT_ACTIONS_PKG dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_IE_HIST_ARCH_PKG dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_US_MMREF_LOCAL_XML dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_PAYRG_PKG dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_US_PAYMENT_PKG dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_NO_PAYPROC dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.HR_NONRUN_ASACT dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_MX_PAYROLL_ARCH dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_VOID_REVERSAL_PKG dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_IN_SOE dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_CA_EOY_ARCHIVE dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_NZ_SOE_PKG dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_MX_SOE_SS_PKG dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.HR_PRE_PAY dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_IN_PF_ARCHIVE dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_US_MAGW2_REPORTING dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_CA_T4_CANCEL_MAG dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_AC_ACTION_ARCH dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_CN_AUDIT_XMLGEN dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_IE_LEGISLATIVE_ARCHIVE dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_HK_PAYSLIP_ARCHIVE dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_JP_PRE_TAX_ARCHIVE dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_IE_P45_ARCHIVE dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_AE_PAYROLL_REGISTER dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_AE_RULES dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.HR_PRE_PAY dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_P45_PKG dependencies on PAY_ACTION_INTERLOCKS
12.2.2
-
APPS.PAY_CA_EOY_RL1_ARCHIVE dependencies on PAY_ACTION_INTERLOCKS
12.1.1
-
APPS.PAY_DK_SICKNESS_DP202 dependencies on PAY_ACTION_INTERLOCKS
12.1.1