DBA Data[Home] [Help]

APPS.HR_APPLICANT_DATAUPD dependencies on PAY_UPGRADE_STATUS

Line 417: -- set status of complete in the PAY_UPGRADE_STATUS table

413: -- indicate that the named update process has started processing
414: --
415: hr_update_utility.setUpdateProcessing(p_update_name => l_update_name);
416: --
417: -- set status of complete in the PAY_UPGRADE_STATUS table
418: --
419: hr_update_utility.setUpdateComplete(p_update_name => l_update_name);
420: --
421: else

Line 423: ** a manual submission delete the PAY_UPGRADE_STATUS record.

419: hr_update_utility.setUpdateComplete(p_update_name => l_update_name);
420: --
421: else
422: /* We are not on a restart therefore if we are running from
423: ** a manual submission delete the PAY_UPGRADE_STATUS record.
424: */
425: if p_caller = 'F' then
426: delete from pay_upgrade_status
427: where upgrade_definition_id =

Line 426: delete from pay_upgrade_status

422: /* We are not on a restart therefore if we are running from
423: ** a manual submission delete the PAY_UPGRADE_STATUS record.
424: */
425: if p_caller = 'F' then
426: delete from pay_upgrade_status
427: where upgrade_definition_id =
428: (select upgrade_definition_id
429: from pay_upgrade_definitions
430: where short_name = l_update_name);