DBA Data[Home] [Help]

APPS.PER_RCF_BUS dependencies on HR_API

Line 45: hr_api.mandatory_arg_error

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

Line 71: hr_api.set_security_group_id

67: close csr_sec_grp;
68: --
69: -- Set the security_group_id in CLIENT_INFO
70: --
71: hr_api.set_security_group_id
72: (p_security_group_id => l_security_group_id
73: );
74: end if;
75: --

Line 109: hr_api.mandatory_arg_error

105: hr_utility.set_location('Entering:'|| l_proc, 10);
106: --
107: -- Ensure that all the mandatory parameter are not null
108: --
109: hr_api.mandatory_arg_error
110: (p_api_name => l_proc
111: ,p_argument => 'recruitment_activity_for_id'
112: ,p_argument_value => p_rec_activity_for_id
113: );

Line 115: if ( nvl(per_rcf_bus.g_rec_activity_for_id, hr_api.g_number)

111: ,p_argument => 'recruitment_activity_for_id'
112: ,p_argument_value => p_rec_activity_for_id
113: );
114: --
115: if ( nvl(per_rcf_bus.g_rec_activity_for_id, hr_api.g_number)
116: = p_rec_activity_for_id) then
117: --
118: -- The legislation code has already been found with a previous
119: -- call to this function. Just return the value in the global

Line 206: hr_api.argument_changed_error

202: -- Add checks to ensure non-updateable args have
203: -- not been updated.
204: if (p_rec.business_group_id <> per_rcf_shd.g_old_rec.business_group_id)
205: then
206: hr_api.argument_changed_error
207: (p_api_name => l_proc
208: ,p_argument => 'BUSINESS_GROUP_ID'
209: ,p_base_table => per_rcf_shd.g_tab_nam
210: );

Line 276: and (nvl(per_rcf_shd.g_old_rec.vacancy_id,hr_api.g_number) <>

272: -- Check to see if the vacancy id has changed.
273: --
274: hr_utility.set_location(l_proc, 20);
275: if ((l_api_updating
276: and (nvl(per_rcf_shd.g_old_rec.vacancy_id,hr_api.g_number) <>
277: p_vacancy_id))
278: or (NOT l_api_updating)) then
279: --
280: -- Check to ensure that the vacancy id is not null.

Line 284: hr_api.mandatory_arg_error

280: -- Check to ensure that the vacancy id is not null.
281: --
282: hr_utility.set_location(l_proc, 30);
283: if p_vacancy_id is null then
284: hr_api.mandatory_arg_error
285: (p_api_name => l_proc
286: ,p_argument => 'vacancy_id'
287: ,p_argument_value => p_vacancy_id
288: );

Line 391: and (nvl(per_rcf_shd.g_old_rec.rec_activity_id,hr_api.g_number) <>

387: -- Check to see if the recruitment activity id has changed.
388: --
389: hr_utility.set_location(l_proc, 20);
390: if ((l_api_updating
391: and (nvl(per_rcf_shd.g_old_rec.rec_activity_id,hr_api.g_number) <>
392: p_rec_activity_id))
393: or (NOT l_api_updating)) then
394: --
395: -- Check to ensure that the recruitment_activity_id is not null.

Line 399: hr_api.mandatory_arg_error

395: -- Check to ensure that the recruitment_activity_id is not null.
396: --
397: hr_utility.set_location(l_proc, 30);
398: if p_rec_activity_id is null then
399: hr_api.mandatory_arg_error
400: (p_api_name => l_proc
401: ,p_argument => 'rec_activity_id'
402: ,p_argument_value => p_rec_activity_id
403: );

Line 766: hr_api.validate_bus_grp_id

762: hr_utility.set_location('Entering:'||l_proc, 10);
763: --
764: -- Validate Important Attributes
765: --
766: hr_api.validate_bus_grp_id
767: (p_business_group_id => p_rec.business_group_id
768: ,p_associated_column1 => per_rcf_shd.g_tab_nam
769: || '.BUSINESS_GROUP_ID');
770: --