DBA Data[Home] [Help]

APPS.HR_AU_PER_PAY_METHOD_LEG_HOOK dependencies on HR_UTILITY

Line 49: g_debug := hr_utility.debug_enabled;

45: l_validate VARCHAR2(5);
46:
47: BEGIN
48:
49: g_debug := hr_utility.debug_enabled;
50:
51: IF g_debug THEN
52: hr_utility.set_location('Entering:'|| l_proc, 10);
53: END if;

Line 52: hr_utility.set_location('Entering:'|| l_proc, 10);

48:
49: g_debug := hr_utility.debug_enabled;
50:
51: IF g_debug THEN
52: hr_utility.set_location('Entering:'|| l_proc, 10);
53: END if;
54:
55:
56: IF ((p_segment2 IS NULL) OR (p_segment2 = hr_api.g_varchar2))

Line 59: hr_utility.trace('Invalid value passed for the segments. No validation');

55:
56: IF ((p_segment2 IS NULL) OR (p_segment2 = hr_api.g_varchar2))
57: THEN
58: IF g_debug THEN
59: hr_utility.trace('Invalid value passed for the segments. No validation');
60: END if;
61:
62: ELSE
63: l_validate := HR_AU_BANK_ACCT_VALIDATION.VALIDATE_ACC_NUM(p_segment2);

Line 67: hr_utility.set_message(801, 'HR_AU_INVALID_BANK_DETAILS');

63: l_validate := HR_AU_BANK_ACCT_VALIDATION.VALIDATE_ACC_NUM(p_segment2);
64: IF (l_validate <> 'TRUE')
65: THEN
66: -- Bank/Acct Number is not valid
67: hr_utility.set_message(801, 'HR_AU_INVALID_BANK_DETAILS');
68: hr_utility.raise_error;
69: END IF;
70: END IF;
71:

Line 68: hr_utility.raise_error;

64: IF (l_validate <> 'TRUE')
65: THEN
66: -- Bank/Acct Number is not valid
67: hr_utility.set_message(801, 'HR_AU_INVALID_BANK_DETAILS');
68: hr_utility.raise_error;
69: END IF;
70: END IF;
71:
72: IF g_debug THEN

Line 73: hr_utility.set_location('Leaving:'|| l_proc, 10);

69: END IF;
70: END IF;
71:
72: IF g_debug THEN
73: hr_utility.set_location('Leaving:'|| l_proc, 10);
74: END if;
75:
76: END VALIDATE_BANK_ACCT;
77: END HR_AU_PER_PAY_METHOD_LEG_HOOK;