DBA Data[Home] [Help]

APPS.PAY_CA_PAYREG_EXTRACT_PKG dependencies on PAY_ACTION_INTERLOCKS

Line 718: ,pay_action_interlocks pai

714: ,ppa_pre.payroll_id
715: ,ppa_pre.effective_date /* BUG: 5383895 added ppa_pre.effective_date */
716: from pay_run_types_f prt
717: ,pay_assignment_actions paa_run
718: ,pay_action_interlocks pai
719: ,pay_assignment_actions paa_pre
720: ,pay_payroll_actions ppa_pre
721: where ppa_pre.business_group_id = cp_business_group_id
722: and ppa_pre.effective_date between cp_start_date and cp_end_date /* BUG: 5383895 ppa_pre.date_earned changed to ppa_pre.effective_date */

Line 796: pay_action_interlocks pai,

792: ppa.effective_date
793: from
794: pay_payroll_actions ppa,
795: pay_assignment_actions paa,
796: pay_action_interlocks pai,
797: pay_pre_payments ppp
798: where pai.locked_action_id = cp_assignment_action_id
799: and pai.locking_action_id = paa.assignment_action_id
800: and paa.action_status = 'C'

Line 836: pay_action_interlocks pai

832: select ppa.effective_date,ptp.period_name
833: from per_time_periods ptp,
834: pay_payroll_actions ppa,
835: pay_assignment_actions paa,
836: pay_action_interlocks pai
837: where pai.locking_action_id = cp_assignment_action_id
838: and pai.locked_action_id = paa.assignment_action_id
839: and paa.action_status = 'C'
840: and paa.run_type_id is not null

Line 925: pay_action_interlocks,

921: p_astact_id number /*BUG 11076333*/
922: ) IS
923: SELECT void_pa.effective_date
924: FROM pay_assignment_actions chq_or_mag_aa,
925: pay_action_interlocks,
926: pay_assignment_actions void_aa,
927: pay_payroll_actions void_pa
928: WHERE chq_or_mag_aa.payroll_action_id = p_payact_id
929: AND ((fnd_number.canonical_to_number(chq_or_mag_aa.serial_number)

Line 947: pay_action_interlocks pai

943: paa_pymt.serial_number)
944: from pay_pre_payments ppp,
945: pay_assignment_actions paa_pymt,
946: pay_payroll_actions ppa_pymt,
947: pay_action_interlocks pai
948: where pai.locked_action_id = cp_pre_payment_action
949: and paa_pymt.assignment_action_id = pai.locking_action_id
950: and ppa_pymt.payroll_action_id = paa_pymt.payroll_action_id
951: and ppa_pymt.action_type in ('M','H', 'E')