DBA Data[Home] [Help]

APPS.PER_AU_ADD_LEG_HOOK dependencies on HR_UTILITY

Line 26: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'AU') THEN

22: l_proc VARCHAR2(72) := g_package||'check_address';
23:
24: BEGIN
25:
26: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'AU') THEN
27: hr_utility.trace ('AU Legislation not installed. Not performing the validations');
28: RETURN;
29: END IF;
30:

Line 27: hr_utility.trace ('AU Legislation not installed. Not performing the validations');

23:
24: BEGIN
25:
26: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'AU') THEN
27: hr_utility.trace ('AU Legislation not installed. Not performing the validations');
28: RETURN;
29: END IF;
30:
31: IF p_style = 'AU_GLB' and p_country = 'AU' THEN

Line 36: hr_utility.set_message(800, 'HR_AU_INVALID_STATE');

32: --
33: -- Check for the mandatory values
34: --
35: if p_region_1 is null then
36: hr_utility.set_message(800, 'HR_AU_INVALID_STATE');
37: hr_utility.raise_error;
38: end if;
39:
40: END IF;

Line 37: hr_utility.raise_error;

33: -- Check for the mandatory values
34: --
35: if p_region_1 is null then
36: hr_utility.set_message(800, 'HR_AU_INVALID_STATE');
37: hr_utility.raise_error;
38: end if;
39:
40: END IF;
41: