DBA Data[Home] [Help]

APPS.HR_IN_PERSONAL_PAY_METHOD_API dependencies on PAY_IN_UTILS

Line 81: pay_in_utils.set_location(g_debug,'Entering:'|| l_proc, 10);

77: BEGIN
78: l_proc := g_package||'create_in_personal_pay_method';
79: g_debug := hr_utility.debug_enabled ;
80:
81: pay_in_utils.set_location(g_debug,'Entering:'|| l_proc, 10);
82: --
83: --
84: l_effective_date := trunc(p_effective_date);
85: --

Line 110: pay_in_utils.set_location(g_debug,l_proc, 20);

106: CLOSE legsel;
107:
108:
109: --
110: pay_in_utils.set_location(g_debug,l_proc, 20);
111: --
112: -- Call the business process to create the personal payment method
113: --
114: hr_personal_pay_method_api.create_personal_pay_method

Line 159: pay_in_utils.set_location(g_debug,'Leaving:'|| l_proc, 30);

155: ,p_effective_end_date => p_effective_end_date
156: ,p_comment_id => p_comment_id
157: );
158: --
159: pay_in_utils.set_location(g_debug,'Leaving:'|| l_proc, 30);
160:
161: END create_in_personal_pay_method;
162:
163:

Line 229: pay_in_utils.set_location(g_debug,'Entering:'|| l_proc, 10);

225: l_legislation_code per_business_groups.legislation_code%type;
226: --
227: BEGIN
228: l_proc := g_package||'update_in_personal_pay_method';
229: pay_in_utils.set_location(g_debug,'Entering:'|| l_proc, 10);
230: --
231: --
232: l_effective_date := trunc(p_effective_date);
233: --

Line 253: pay_in_utils.set_location(g_debug,l_proc, 20);

249: END IF;
250: --
251: CLOSE legsel;
252:
253: pay_in_utils.set_location(g_debug,l_proc, 20);
254: --
255: -- Call the business process to update the personal payment method
256: --
257: hr_personal_pay_method_api.update_personal_pay_method

Line 302: pay_in_utils.set_location(g_debug,'Leaving: '||l_proc, 30);

298: ,p_effective_start_date => p_effective_start_date
299: ,p_effective_end_date => p_effective_end_date
300: );
301: --
302: pay_in_utils.set_location(g_debug,'Leaving: '||l_proc, 30);
303:
304: END update_in_personal_pay_method;
305:
306: BEGIN