DBA Data[Home] [Help]

APPS.HR_ABM_BUS dependencies on HR_UTILITY

Line 43: hr_utility.set_location('Entering:'||l_proc, 5);

39: --
40: l_proc varchar2(72) := g_package||'chk_batch_run_number';
41: --
42: begin
43: hr_utility.set_location('Entering:'||l_proc, 5);
44: --
45: hr_api.mandatory_arg_error
46: (p_api_name => l_proc,
47: p_argument => 'batch_run_number',

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

46: (p_api_name => l_proc,
47: p_argument => 'batch_run_number',
48: p_argument_value => p_batch_run_number);
49: --
50: hr_utility.set_location(' Leaving:'||l_proc, 10);
51: end chk_batch_run_number;
52: --
53: -- ----------------------------------------------------------------------------
54: -- |---------------------------< chk_api_name >-------------------------------|

Line 86: hr_utility.set_location('Entering:'||l_proc, 5);

82: --
83: l_proc varchar2(72) := g_package||'chk_api_name';
84: --
85: begin
86: hr_utility.set_location('Entering:'||l_proc, 5);
87: --
88: hr_api.mandatory_arg_error
89: (p_api_name => l_proc,
90: p_argument => 'api_name',

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

89: (p_api_name => l_proc,
90: p_argument => 'api_name',
91: p_argument_value => p_api_name);
92: --
93: hr_utility.set_location(' Leaving:'||l_proc, 10);
94: end chk_api_name;
95: --
96: -- ----------------------------------------------------------------------------
97: -- |-----------------------------< chk_status >-------------------------------|

Line 131: hr_utility.set_location('Entering:'||l_proc, 5);

127: --
128: l_proc varchar2(72) := g_package||'chk_status';
129: --
130: begin
131: hr_utility.set_location('Entering:'||l_proc, 5);
132: --
133: hr_api.mandatory_arg_error
134: (p_api_name => l_proc,
135: p_argument => 'status',

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

134: (p_api_name => l_proc,
135: p_argument => 'status',
136: p_argument_value => p_status);
137: --
138: hr_utility.set_location(' Leaving:'||l_proc, 10);
139: end chk_status;
140: --
141: -- ----------------------------------------------------------------------------
142: -- |---------------------------< insert_validate >----------------------------|

Line 149: hr_utility.set_location('Entering:'||l_proc, 5);

145: --
146: l_proc varchar2(72) := g_package||'insert_validate';
147: --
148: Begin
149: hr_utility.set_location('Entering:'||l_proc, 5);
150: --
151: -- As the date is not within the context of a business group
152: -- the set_security_group_id has zero passed to it
153: -- as the default security_group_id

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

153: -- as the default security_group_id
154: --
155: hr_api.set_security_group_id(p_security_group_id => 0);
156: --
157: hr_utility.set_location(' Leaving:'||l_proc, 10);
158: --
159: -- Call all supporting business operations
160: --
161: chk_batch_run_number(p_batch_run_number => p_rec.batch_run_number);

Line 165: hr_utility.set_location(' Leaving:'||l_proc, 15);

161: chk_batch_run_number(p_batch_run_number => p_rec.batch_run_number);
162: chk_api_name(p_api_name => p_rec.api_name);
163: chk_status(p_status => p_rec.status);
164: --
165: hr_utility.set_location(' Leaving:'||l_proc, 15);
166: --
167: End insert_validate;
168: --
169: end hr_abm_bus;