DBA Data[Home] [Help]

APPS.PER_IN_EXTRA_PER_INFO_LEG_HOOK dependencies on HR_UTILITY

Line 42: g_debug := hr_utility.debug_enabled;

38: E_INVALID_DATES_ERR EXCEPTION;
39: BEGIN
40:
41: l_procedure := g_package||'validate_issue_expiry_date';
42: g_debug := hr_utility.debug_enabled;
43: pay_in_utils.set_location(g_debug, 'Entering: ' || l_procedure, 10);
44:
45: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'IN') THEN
46: hr_utility.trace ('IN Legislation not installed. Not performing the validations');

Line 45: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'IN') THEN

41: l_procedure := g_package||'validate_issue_expiry_date';
42: g_debug := hr_utility.debug_enabled;
43: pay_in_utils.set_location(g_debug, 'Entering: ' || l_procedure, 10);
44:
45: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'IN') THEN
46: hr_utility.trace ('IN Legislation not installed. Not performing the validations');
47: pay_in_utils.set_location(g_debug,'Leaving : '||l_procedure, 20);
48: RETURN;
49: END IF;

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

42: g_debug := hr_utility.debug_enabled;
43: pay_in_utils.set_location(g_debug, 'Entering: ' || l_procedure, 10);
44:
45: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'IN') THEN
46: hr_utility.trace ('IN Legislation not installed. Not performing the validations');
47: pay_in_utils.set_location(g_debug,'Leaving : '||l_procedure, 20);
48: RETURN;
49: END IF;
50:

Line 74: hr_utility.set_message(800,'PER_IN_INCORRECT_PASSPORT_DATE');

70: pay_in_utils.set_location(g_debug,'Leaving : '||l_procedure, 30);
71:
72: EXCEPTION
73: WHEN E_INVALID_DATES_ERR THEN
74: hr_utility.set_message(800,'PER_IN_INCORRECT_PASSPORT_DATE');
75: pay_in_utils.set_location(g_debug,'Leaving : '||l_procedure, 40);
76: hr_utility.raise_error;
77:
78: END validate_issue_expiry_date;

Line 76: hr_utility.raise_error;

72: EXCEPTION
73: WHEN E_INVALID_DATES_ERR THEN
74: hr_utility.set_message(800,'PER_IN_INCORRECT_PASSPORT_DATE');
75: pay_in_utils.set_location(g_debug,'Leaving : '||l_procedure, 40);
76: hr_utility.raise_error;
77:
78: END validate_issue_expiry_date;
79:
80: