DBA Data[Home] [Help]

APPS.BEN_CREATE_PTNL_LER_FOR_PER dependencies on HR_UTILITY

Line 7: g_debug boolean := hr_utility.debug_enabled;

3: --
4: -- Package Variables
5: --
6: g_package varchar2(33) := 'ben_create_ptnl_ler_for_per.';
7: g_debug boolean := hr_utility.debug_enabled;
8: --
9:
10:
11: procedure create_ptnl_ler_event

Line 43: g_debug := hr_utility.debug_enabled;

39: l_proc varchar2(72) ;
40: --
41: begin
42: --
43: g_debug := hr_utility.debug_enabled;
44: if g_debug then
45: l_proc := g_package||'create_ptnl_ler_event';
46: hr_utility.set_location('Entering:'|| l_proc, 10);
47: hr_utility.set_location('LE reason type :'|| p_ler_typ_cd, 10);

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

42: --
43: g_debug := hr_utility.debug_enabled;
44: if g_debug then
45: l_proc := g_package||'create_ptnl_ler_event';
46: hr_utility.set_location('Entering:'|| l_proc, 10);
47: hr_utility.set_location('LE reason type :'|| p_ler_typ_cd, 10);
48: end if;
49: --
50: -- Issue a savepoint if operating in validation only mode

Line 47: hr_utility.set_location('LE reason type :'|| p_ler_typ_cd, 10);

43: g_debug := hr_utility.debug_enabled;
44: if g_debug then
45: l_proc := g_package||'create_ptnl_ler_event';
46: hr_utility.set_location('Entering:'|| l_proc, 10);
47: hr_utility.set_location('LE reason type :'|| p_ler_typ_cd, 10);
48: end if;
49: --
50: -- Issue a savepoint if operating in validation only mode
51: --

Line 54: hr_utility.set_location('Call to HR PNTL_LER creation :'|| l_proc, 10);

50: -- Issue a savepoint if operating in validation only mode
51: --
52: if nvl(p_ler_typ_cd,'-1') = 'CHECKLIST' then
53: -- call to HR package to create checklist ptn_ler
54: hr_utility.set_location('Call to HR PNTL_LER creation :'|| l_proc, 10);
55: --
56: PER_CHECKLIST_EVENTS.CREATE_EVENT
57: (p_effective_date => p_effective_date
58: ,p_person_id => p_person_id

Line 63: hr_utility.set_location('Call to HR PNTL_LER creation :'|| l_proc, 20);

59: ,p_assignment_id => p_assignment_id
60: ,p_ler_id => p_ler_id
61: );
62: --
63: hr_utility.set_location('Call to HR PNTL_LER creation :'|| l_proc, 20);
64: --
65: else
66:
67: ben_ptnl_ler_for_per_api.create_ptnl_ler_for_per

Line 96: hr_utility.set_location(' Leaving:'||l_proc, 05);

92:
93: end if ;
94: --
95: if g_debug then
96: hr_utility.set_location(' Leaving:'||l_proc, 05);
97: end if;
98:
99:
100: