DBA Data[Home] [Help]

APPS.BEN_CWB_DATA_MODEL_UPGRADE dependencies on HR_UPDATE_UTILITY

Line 23: * 115.8 02-Mar-2004 maagrawa hr_update_utility package changes.

19: * 115.5 12-Feb-2004 maagrawa Call to upgrade_person_rates was missing.
20: * 115.6 13-Feb-2004 skota Added the supervisor_id to
21: * refresh_person_info_group_pl
22: * 115.7 01-Mar-2004 maagrawa New algo to get sub_acty_typ_cd.
23: * 115.8 02-Mar-2004 maagrawa hr_update_utility package changes.
24: * 115.9 15-Mar-2004 maagrawa Commented out hr_update_utility package
25: * call as it will not be delivered in 1st patch.
26: * 115.10 30-Mar-2004 maagrawa Null the rankings which are not integers.
27: * 115.11 02-Mar-2004 maagrawa Remove spaces for rank.

Line 24: * 115.9 15-Mar-2004 maagrawa Commented out hr_update_utility package

20: * 115.6 13-Feb-2004 skota Added the supervisor_id to
21: * refresh_person_info_group_pl
22: * 115.7 01-Mar-2004 maagrawa New algo to get sub_acty_typ_cd.
23: * 115.8 02-Mar-2004 maagrawa hr_update_utility package changes.
24: * 115.9 15-Mar-2004 maagrawa Commented out hr_update_utility package
25: * call as it will not be delivered in 1st patch.
26: * 115.10 30-Mar-2004 maagrawa Null the rankings which are not integers.
27: * 115.11 02-Mar-2004 maagrawa Remove spaces for rank.
28: * Log Upgrade progress messages.

Line 31: * 115.14 19-Jan-2005 maagrawa Re-instate hr_update_utility calls.

27: * 115.11 02-Mar-2004 maagrawa Remove spaces for rank.
28: * Log Upgrade progress messages.
29: * 115.12 25-May-2004 maagrawa Splitting of Perf/Promo records.
30: * 115.13 21-Sep-2004 maagrawa Included upgrade for emp reassign trans.
31: * 115.14 19-Jan-2005 maagrawa Re-instate hr_update_utility calls.
32: * 115.15 28-Apr-2005 maagrawa Also check whether the process is complete
33: * before re-submit.
34: * 115.16 03-May-2005 maagrawa Increase the size of brief name from 250
35: * to 360.

Line 1921: if hr_update_utility.isUpdateComplete

1917:
1918: l_cwb_used varchar2(30) := 'FALSE';
1919:
1920: begin
1921: if hr_update_utility.isUpdateComplete
1922: (p_app_shortname => 'BEN'
1923: ,p_function_name => null
1924: ,p_business_group_id => null
1925: ,p_update_name => 'BENCWBMU') = 'TRUE' then

Line 1929: hr_update_utility.setUpdateProcessing(p_update_name => 'BENCWBMU');

1925: ,p_update_name => 'BENCWBMU') = 'TRUE' then
1926: return;
1927: end if;
1928:
1929: hr_update_utility.setUpdateProcessing(p_update_name => 'BENCWBMU');
1930:
1931: is_cwb_used(p_result => l_cwb_used);
1932:
1933: if l_cwb_used = 'TRUE' then

Line 1946: hr_update_utility.setUpdateComplete(p_update_name => 'BENCWBMU');

1942: commit_and_log('CWB Upgrade Complete');
1943:
1944: end if;
1945:
1946: hr_update_utility.setUpdateComplete(p_update_name => 'BENCWBMU');
1947:
1948:
1949: end main;
1950: