DBA Data[Home] [Help]

APPS.HR_MX_PERSONAL_PAY_METHOD_API dependencies on HR_UTILITY

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

67:
68: l_proc := g_package||'create_mx_personal_pay_method';
69:
70: if g_debug then
71: hr_utility.set_location('Entering:'|| l_proc, 10);
72: end if;
73: --
74: -- Initialise local variables
75: --

Line 80: hr_utility.set_location(l_proc, 20);

76: l_effective_date := trunc(p_effective_date);
77: l_business_group_id := hr_mx_utility.get_bg_from_assignment(p_assignment_id);
78:
79: if g_debug then
80: hr_utility.set_location(l_proc, 20);
81: end if;
82:
83: --
84: -- Check if Business Group of the assignment lies in "MX" legislation

Line 89: hr_utility.set_location(l_proc, 30);

85: --
86: hr_mx_utility.check_bus_grp(l_business_group_id, 'MX');
87:
88: if g_debug then
89: hr_utility.set_location(l_proc, 30);
90: end if;
91:
92: --
93: -- Create the Personal Payment method

Line 143: hr_utility.set_location(' Leaving:'||l_proc, 40);

139: ,p_comment_id => p_comment_id
140: );
141: --
142: if g_debug then
143: hr_utility.set_location(' Leaving:'||l_proc, 40);
144: end if;
145: --
146: end create_mx_personal_pay_method;
147:

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

210: --
211: l_proc := g_package||'update_mx_personal_pay_method';
212:
213: if g_debug then
214: hr_utility.set_location('Entering:'|| l_proc, 10);
215: end if;
216:
217: --
218: --

Line 229: hr_utility.set_location(l_proc, 20);

225:
226: IF csr_get_bg%NOTFOUND THEN
227:
228: if g_debug then
229: hr_utility.set_location(l_proc, 20);
230: end if;
231:
232: CLOSE csr_get_bg;
233: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');

Line 233: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');

229: hr_utility.set_location(l_proc, 20);
230: end if;
231:
232: CLOSE csr_get_bg;
233: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
234: hr_utility.raise_error;
235: END IF;
236: --
237: CLOSE csr_get_bg;

Line 234: hr_utility.raise_error;

230: end if;
231:
232: CLOSE csr_get_bg;
233: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
234: hr_utility.raise_error;
235: END IF;
236: --
237: CLOSE csr_get_bg;
238:

Line 245: hr_utility.set_location(l_proc, 30);

241: --
242: hr_mx_utility.check_bus_grp(l_business_group_id, 'MX');
243:
244: if g_debug then
245: hr_utility.set_location(l_proc, 30);
246: end if;
247:
248: --
249: -- Call the business process to update the personal payment method

Line 298: hr_utility.set_location(' Leaving:'||l_proc, 40);

294: ,p_effective_end_date => p_effective_end_date
295: );
296: --
297: if g_debug then
298: hr_utility.set_location(' Leaving:'||l_proc, 40);
299: end if;
300:
301: END update_mx_personal_pay_method;
302:

Line 305: g_debug := hr_utility.debug_enabled;

301: END update_mx_personal_pay_method;
302:
303: BEGIN
304: g_package := 'hr_mx_personal_pay_method_api.';
305: g_debug := hr_utility.debug_enabled;
306: END hr_mx_personal_pay_method_api;