DBA Data[Home] [Help]

APPS.PER_PL_LOCATION dependencies on HR_UTILITY

Line 20: hr_utility.set_message(800,'HR_PL_ST_NAME_NOT_SPEC');

16: -- Check that Street Name is entered when street type is entered
17: --
18: IF ( p_address_line_1 IS NOT NULL ) THEN
19: IF ( p_address_line_2 IS NULL ) THEN
20: hr_utility.set_message(800,'HR_PL_ST_NAME_NOT_SPEC');
21: hr_utility.raise_error;
22: END IF;
23: END IF;
24:

Line 21: hr_utility.raise_error;

17: --
18: IF ( p_address_line_1 IS NOT NULL ) THEN
19: IF ( p_address_line_2 IS NULL ) THEN
20: hr_utility.set_message(800,'HR_PL_ST_NAME_NOT_SPEC');
21: hr_utility.raise_error;
22: END IF;
23: END IF;
24:
25: --

Line 37: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN

33: IS
34: BEGIN
35: --
36: /* Added for GSI Bug 5472781 */
37: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN
38: hr_utility.trace('PL not installed.Leaving create_pl_location');
39: return;
40: END IF;
41: IF p_style = 'PL' THEN

Line 38: hr_utility.trace('PL not installed.Leaving create_pl_location');

34: BEGIN
35: --
36: /* Added for GSI Bug 5472781 */
37: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN
38: hr_utility.trace('PL not installed.Leaving create_pl_location');
39: return;
40: END IF;
41: IF p_style = 'PL' THEN
42: per_pl_location.check_pl_location( p_address_line_1 => p_address_line_1

Line 58: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN

54: --
55: BEGIN
56: --
57: /* Added for GSI Bug 5472781 */
58: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN
59: hr_utility.trace('PL not installed.Leaving update_pl_location');
60: return;
61: END IF;
62: IF p_style='PL' THEN

Line 59: hr_utility.trace('PL not installed.Leaving update_pl_location');

55: BEGIN
56: --
57: /* Added for GSI Bug 5472781 */
58: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN
59: hr_utility.trace('PL not installed.Leaving update_pl_location');
60: return;
61: END IF;
62: IF p_style='PL' THEN
63: per_pl_location.check_pl_location( p_address_line_1 => p_address_line_1