DBA Data[Home] [Help]

APPS.HR_DE_EXTRA_ASSIGNMENT_CHECKS dependencies on HR_UTILITY

Line 29: IF hr_utility.chk_product_install('Oracle Human Resources', 'DE') THEN

25: BEGIN
26: --
27: --
28: -- Check if DE is installed
29: IF hr_utility.chk_product_install('Oracle Human Resources', 'DE') THEN
30:
31: -- Check that the union member flag has not been set.
32: --
33: If val_changed(p_labour_union_member_flag) AND p_labour_union_member_flag IS NOT NULL THEN

Line 34: hr_utility.set_message(800, 'HR_DE_INVALID_UNION_FLAG');

30:
31: -- Check that the union member flag has not been set.
32: --
33: If val_changed(p_labour_union_member_flag) AND p_labour_union_member_flag IS NOT NULL THEN
34: hr_utility.set_message(800, 'HR_DE_INVALID_UNION_FLAG');
35: hr_utility.raise_error;
36: END IF;
37:
38: END IF;

Line 35: hr_utility.raise_error;

31: -- Check that the union member flag has not been set.
32: --
33: If val_changed(p_labour_union_member_flag) AND p_labour_union_member_flag IS NOT NULL THEN
34: hr_utility.set_message(800, 'HR_DE_INVALID_UNION_FLAG');
35: hr_utility.raise_error;
36: END IF;
37:
38: END IF;
39: END assignment_checks;