DBA Data[Home] [Help]

APPS.PER_AD_ZD_SEED_WRAPPER dependencies on HR_UTILITY

Line 49: hr_utility.trace('Entering per_ad_zd_seed_wrapper.prepare');

45: IS
46:
47: BEGIN
48:
49: hr_utility.trace('Entering per_ad_zd_seed_wrapper.prepare');
50:
51: ad_zd_seed.prepare(p_table);
52:
53:

Line 68: hr_utility.trace('Entering per_ad_zd_seed_wrapper.is_patch_edition');

64: IS
65:
66: BEGIN
67:
68: hr_utility.trace('Entering per_ad_zd_seed_wrapper.is_patch_edition');
69:
70: IF ad_zd.get_edition('PATCH') IS NOT NULL THEN
71:
72: return 1;

Line 81: hr_utility.trace('Error ORA-'||TO_CHAR(SQLCODE));

77:
78: EXCEPTION
79:
80: WHEN OTHERS THEN
81: hr_utility.trace('Error ORA-'||TO_CHAR(SQLCODE));
82: hr_utility.raise_error;
83:
84: END is_patch_edition;
85:

Line 82: hr_utility.raise_error;

78: EXCEPTION
79:
80: WHEN OTHERS THEN
81: hr_utility.trace('Error ORA-'||TO_CHAR(SQLCODE));
82: hr_utility.raise_error;
83:
84: END is_patch_edition;
85:
86: PROCEDURE check_patch_edition

Line 92: hr_utility.trace('Entering per_ad_zd_seed_wrapper.check_patch_edition');

88: IS
89:
90: BEGIN
91:
92: hr_utility.trace('Entering per_ad_zd_seed_wrapper.check_patch_edition');
93:
94: IF is_patch_edition = 1 THEN
95:
96: hr_utility.trace('An Online Patch is in Progress, Return Error');

Line 96: hr_utility.trace('An Online Patch is in Progress, Return Error');

92: hr_utility.trace('Entering per_ad_zd_seed_wrapper.check_patch_edition');
93:
94: IF is_patch_edition = 1 THEN
95:
96: hr_utility.trace('An Online Patch is in Progress, Return Error');
97:
98: fnd_message.set_name('FND', 'AD_ZD_DISABLED_FEATURE');
99: raise_application_error ('-20000', fnd_message.get);
100: