DBA Data[Home] [Help]

APPS.PAY_ELEMENT_LINKS_PKG dependencies on PAY_BATCH_OBJECT_STATUS_PKG

Line 198: pay_batch_object_status_pkg.delete_object_status

194: -- Bug 5512101. Batch Element Link support.
195: -- Delete the object status record if the delete mode is ZAP.
196: --
197: if p_delete_mode = 'ZAP' then
198: pay_batch_object_status_pkg.delete_object_status
199: (p_object_type => 'EL'
200: ,p_object_id => p_element_link_id
201: ,p_payroll_action_id => null
202: );

Line 781: pay_batch_object_status_pkg.chk_complete_status

777: -- Bug 5512101. Batch Element Link support.
778: -- We need to lock the batch object status and ensure that the element
779: -- link is complete.
780: --
781: pay_batch_object_status_pkg.chk_complete_status
782: (p_object_type => 'EL'
783: ,p_object_id => p_element_link_id
784: );
785:

Line 1088: and nvl(pay_batch_object_status_pkg.get_status

1084: and bel.batch_element_link_id <> nvl(p_element_link_id,0)
1085: and bel.element_link_id is null
1086: and bel.business_group_id + 0 = p_business_group_id
1087: -- exclude the batch link that is currently processing.
1088: and nvl(pay_batch_object_status_pkg.get_status
1089: ('BEL',bel.batch_element_link_id),'U') <> 'P'
1090: order by effective_start_date;
1091: --
1092: cursor csr_my_people_group is

Line 1456: pay_batch_object_status_pkg.chk_complete_status

1452: -- We need to ensure that the element link is complete
1453: -- unless the delete mode is ZAP.
1454: --
1455: if p_delete_mode <> 'ZAP' then
1456: pay_batch_object_status_pkg.chk_complete_status
1457: (p_object_type => 'EL'
1458: ,p_object_id => p_element_link_id
1459: );
1460: end if;