DBA Data[Home] [Help]

APPS.PAY_DTE_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 => 'datetracked_event_id'
47: ,p_argument_value => p_datetracked_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 => 'datetracked_event_id'
107: ,p_argument_value => p_datetracked_event_id
108: );

Line 110: if ( nvl(pay_dte_bus.g_datetracked_event_id, hr_api.g_number)

106: ,p_argument => 'datetracked_event_id'
107: ,p_argument_value => p_datetracked_event_id
108: );
109: --
110: if ( nvl(pay_dte_bus.g_datetracked_event_id, hr_api.g_number)
111: = p_datetracked_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 199: if nvl(p_rec.legislation_code, hr_api.g_varchar2) <>

195: fnd_message.set_token('STEP ', '5');
196: fnd_message.raise_error;
197: END IF;
198: --
199: if nvl(p_rec.legislation_code, hr_api.g_varchar2) <>
200: nvl(pay_dte_shd.g_old_rec.legislation_code, hr_api.g_varchar2)
201: then
202: l_argument := 'legislation_code';
203: raise l_error;

Line 200: nvl(pay_dte_shd.g_old_rec.legislation_code, hr_api.g_varchar2)

196: fnd_message.raise_error;
197: END IF;
198: --
199: if nvl(p_rec.legislation_code, hr_api.g_varchar2) <>
200: nvl(pay_dte_shd.g_old_rec.legislation_code, hr_api.g_varchar2)
201: then
202: l_argument := 'legislation_code';
203: raise l_error;
204: end if;

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

202: l_argument := 'legislation_code';
203: raise l_error;
204: end if;
205: --
206: if nvl(p_rec.business_group_id, hr_api.g_number) <>
207: nvl(pay_dte_shd.g_old_rec.business_group_id, hr_api.g_number)
208: then
209: l_argument := 'business_group_id';
210: raise l_error;

Line 207: nvl(pay_dte_shd.g_old_rec.business_group_id, hr_api.g_number)

203: raise l_error;
204: end if;
205: --
206: if nvl(p_rec.business_group_id, hr_api.g_number) <>
207: nvl(pay_dte_shd.g_old_rec.business_group_id, hr_api.g_number)
208: then
209: l_argument := 'business_group_id';
210: raise l_error;
211: end if;

Line 213: if nvl(p_rec.event_group_id, hr_api.g_number) <>

209: l_argument := 'business_group_id';
210: raise l_error;
211: end if;
212: --
213: if nvl(p_rec.event_group_id, hr_api.g_number) <>
214: nvl(pay_dte_shd.g_old_rec.event_group_id, hr_api.g_number)
215: then
216: l_argument := 'event_group_id';
217: raise l_error;

Line 214: nvl(pay_dte_shd.g_old_rec.event_group_id, hr_api.g_number)

210: raise l_error;
211: end if;
212: --
213: if nvl(p_rec.event_group_id, hr_api.g_number) <>
214: nvl(pay_dte_shd.g_old_rec.event_group_id, hr_api.g_number)
215: then
216: l_argument := 'event_group_id';
217: raise l_error;
218: end if;

Line 222: hr_api.argument_changed_error

218: end if;
219: --
220: EXCEPTION
221: WHEN l_error THEN
222: hr_api.argument_changed_error
223: (p_api_name => l_proc
224: ,p_argument => l_argument);
225: WHEN OTHERS THEN
226: RAISE;

Line 282: hr_api.mandatory_arg_error

278: hr_utility.set_location('Entering:'||l_proc, 5);
279: --
280: If (p_rec.update_type = 'U')
281: Then
282: hr_api.mandatory_arg_error
283: (p_api_name => l_proc
284: ,p_argument => 'COLUMN_NAME'
285: ,p_argument_value => p_rec.column_name
286: );

Line 346: hr_api.mandatory_arg_error

342: --
343: --
344: -- Check mandatory parameters have been set
345: --
346: hr_api.mandatory_arg_error
347: (p_api_name => l_proc
348: ,p_argument => 'update_type'
349: ,p_argument_value => p_rec.update_type
350: );

Line 352: if hr_api.not_exists_in_hrstanlookups(p_effective_date => p_effective_date

348: ,p_argument => 'update_type'
349: ,p_argument_value => p_rec.update_type
350: );
351: --
352: if hr_api.not_exists_in_hrstanlookups(p_effective_date => p_effective_date
353: ,p_lookup_type => 'UPDATE_TYPE'
354: ,p_lookup_code => p_rec.update_type) then
355: --
356: -- The update_type for this record is not recognised

Line 364: if hr_api.not_exists_in_hrstanlookups(p_effective_date => p_effective_date

360: end if;
361: hr_utility.set_location(l_proc,30);
362: --
363: if p_rec.proration_style is not null then
364: if hr_api.not_exists_in_hrstanlookups(p_effective_date => p_effective_date
365: ,p_lookup_type => 'PAY_PRORATION_STYLE'
366: ,p_lookup_code => p_rec.proration_style) then
367: --
368: -- The proration style is not recognised

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

391: Begin
392: hr_utility.set_location('Entering:'||l_proc, 5);
393: --
394: -- commenting this out as bus grp can be null
395: -- hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp
396: --
397: chk_update_type(p_effective_date => p_effective_date
398: ,p_rec => p_rec);
399: --

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

415: Begin
416: hr_utility.set_location('Entering:'||l_proc, 5);
417: --
418: -- commenting this out as bus grp can be null
419: -- hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp
420: --
421: chk_non_updateable_args
422: (p_effective_date => p_effective_date
423: ,p_rec => p_rec