DBA Data[Home] [Help]

APPS.PAY_PEV_BUS dependencies on HR_API

Line 44: hr_api.mandatory_arg_error

40: hr_utility.set_location('Entering:'|| l_proc, 10);
41: --
42: -- Ensure that all the mandatory parameter are not null
43: --
44: hr_api.mandatory_arg_error
45: (p_api_name => l_proc
46: ,p_argument => 'process_event_id'
47: ,p_argument_value => p_process_event_id
48: );

Line 67: hr_api.set_security_group_id

63: close csr_sec_grp;
64: --
65: -- Set the security_group_id in CLIENT_INFO
66: --
67: hr_api.set_security_group_id
68: (p_security_group_id => l_security_group_id
69: );
70: --
71: hr_utility.set_location(' Leaving:'|| l_proc, 20);

Line 104: hr_api.mandatory_arg_error

100: hr_utility.set_location('Entering:'|| l_proc, 10);
101: --
102: -- Ensure that all the mandatory parameter are not null
103: --
104: hr_api.mandatory_arg_error
105: (p_api_name => l_proc
106: ,p_argument => 'process_event_id'
107: ,p_argument_value => p_process_event_id
108: );

Line 110: if ( nvl(pay_pev_bus.g_process_event_id, hr_api.g_number)

106: ,p_argument => 'process_event_id'
107: ,p_argument_value => p_process_event_id
108: );
109: --
110: if ( nvl(pay_pev_bus.g_process_event_id, hr_api.g_number)
111: = p_process_event_id) then
112: --
113: -- The legislation code has already been found with a previous
114: -- call to this function. Just return the value in the global

Line 201: if nvl(p_rec.assignment_id, hr_api.g_number) <>

197: --
198: --
199: -- p_assignment_id
200: --
201: if nvl(p_rec.assignment_id, hr_api.g_number) <>
202: nvl(pay_pev_shd.g_old_rec.assignment_id, hr_api.g_number)
203: then
204: l_argument := 'p_assignment_id';
205: raise l_error;

Line 202: nvl(pay_pev_shd.g_old_rec.assignment_id, hr_api.g_number)

198: --
199: -- p_assignment_id
200: --
201: if nvl(p_rec.assignment_id, hr_api.g_number) <>
202: nvl(pay_pev_shd.g_old_rec.assignment_id, hr_api.g_number)
203: then
204: l_argument := 'p_assignment_id';
205: raise l_error;
206: end if;

Line 210: if nvl(p_rec.effective_date, hr_api.g_date) <>

206: end if;
207: --
208: -- p_effective_date
209: --
210: if nvl(p_rec.effective_date, hr_api.g_date) <>
211: nvl(pay_pev_shd.g_old_rec.effective_date, hr_api.g_date)
212: then
213: l_argument := 'p_effective_date';
214: raise l_error;

Line 211: nvl(pay_pev_shd.g_old_rec.effective_date, hr_api.g_date)

207: --
208: -- p_effective_date
209: --
210: if nvl(p_rec.effective_date, hr_api.g_date) <>
211: nvl(pay_pev_shd.g_old_rec.effective_date, hr_api.g_date)
212: then
213: l_argument := 'p_effective_date';
214: raise l_error;
215: end if;

Line 219: if nvl(p_rec.change_type, hr_api.g_varchar2) <>

215: end if;
216: --
217: -- p_change_type
218: --
219: if nvl(p_rec.change_type, hr_api.g_varchar2) <>
220: nvl(pay_pev_shd.g_old_rec.change_type, hr_api.g_varchar2)
221: then
222: l_argument := 'p_change_type';
223: raise l_error;

Line 220: nvl(pay_pev_shd.g_old_rec.change_type, hr_api.g_varchar2)

216: --
217: -- p_change_type
218: --
219: if nvl(p_rec.change_type, hr_api.g_varchar2) <>
220: nvl(pay_pev_shd.g_old_rec.change_type, hr_api.g_varchar2)
221: then
222: l_argument := 'p_change_type';
223: raise l_error;
224: end if;

Line 226: if nvl(p_rec.business_group_id, hr_api.g_number) <>

222: l_argument := 'p_change_type';
223: raise l_error;
224: end if;
225: --
226: if nvl(p_rec.business_group_id, hr_api.g_number) <>
227: nvl(pay_pev_shd.g_old_rec.business_group_id, hr_api.g_number)
228: then
229: l_argument := 'business_group_id';
230: raise l_error;

Line 227: nvl(pay_pev_shd.g_old_rec.business_group_id, hr_api.g_number)

223: raise l_error;
224: end if;
225: --
226: if nvl(p_rec.business_group_id, hr_api.g_number) <>
227: nvl(pay_pev_shd.g_old_rec.business_group_id, hr_api.g_number)
228: then
229: l_argument := 'business_group_id';
230: raise l_error;
231: end if;

Line 235: hr_api.argument_changed_error

231: end if;
232: --
233: EXCEPTION
234: WHEN l_error THEN
235: hr_api.argument_changed_error
236: (p_api_name => l_proc
237: ,p_argument => l_argument);
238: WHEN OTHERS THEN
239: RAISE;

Line 277: if hr_api.not_exists_in_hrstanlookups(p_effective_date => p_rec.effective_date

273: --
274: --
275: Begin
276: --
277: if hr_api.not_exists_in_hrstanlookups(p_effective_date => p_rec.effective_date
278: ,p_lookup_type => 'PROCESS_EVENT_TYPE'
279: ,p_lookup_code => p_rec.change_type) then
280: --
281: -- The change_type for this record is not recognised

Line 328: if hr_api.not_exists_in_hrstanlookups(p_rec.effective_date,

324: --
325: --
326: Begin
327: --
328: if hr_api.not_exists_in_hrstanlookups(p_rec.effective_date,
329: 'PROCESS_EVENT_STATUS',
330: p_rec.status) then
331: --
332: -- The status for this record is not recognised

Line 357: --hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp

353: --
354: Begin
355: hr_utility.set_location('Entering:'||l_proc, 5);
356: --
357: --hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp
358: --
359: chk_change_type
360: (p_rec => p_rec
361: );

Line 382: --hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp

378: --
379: Begin
380: hr_utility.set_location('Entering:'||l_proc, 5);
381: --
382: --hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp
383: --
384: chk_non_updateable_args
385: (p_rec => p_rec
386: );