DBA Data[Home] [Help]

APPS.IRC_IVC_BUS dependencies on HR_API

Line 37: hr_api.mandatory_arg_error

33: hr_utility.set_location('Entering:'|| l_proc, 10);
34: --
35: -- Ensure that all the mandatory parameter are not null
36: --
37: hr_api.mandatory_arg_error
38: (p_api_name => l_proc
39: ,p_argument => 'vacancy_consideration_id'
40: ,p_argument_value => p_vacancy_consideration_id
41: );

Line 70: hr_api.mandatory_arg_error

66: hr_utility.set_location('Entering:'|| l_proc, 10);
67: --
68: -- Ensure that all the mandatory parameter are not null
69: --
70: hr_api.mandatory_arg_error
71: (p_api_name => l_proc
72: ,p_argument => 'vacancy_consideration_id'
73: ,p_argument_value => p_vacancy_consideration_id
74: );

Line 134: hr_api.argument_changed_error

130: -- Checks to ensure non-updateable args have
131: -- not been updated.
132: if p_rec.vacancy_consideration_id <> irc_ivc_shd.g_old_rec.vacancy_consideration_id
133: then
134: hr_api.argument_changed_error
135: (p_api_name => l_proc
136: ,p_argument => 'VACANCY_CONSIDERATION_ID'
137: ,p_base_table => irc_ivc_shd.g_tab_nam
138: );

Line 143: hr_api.argument_changed_error

139: end if;
140: --
141: if p_rec.vacancy_id <> irc_ivc_shd.g_old_rec.vacancy_id
142: then
143: hr_api.argument_changed_error
144: (p_api_name => l_proc
145: ,p_argument => 'VACANCY_ID'
146: ,p_base_table => irc_ivc_shd.g_tab_nam
147: );

Line 152: hr_api.argument_changed_error

148: end if;
149: --
150: if p_rec.person_id <> irc_ivc_shd.g_old_rec.person_id
151: then
152: hr_api.argument_changed_error
153: (p_api_name => l_proc
154: ,p_argument => 'PERSON_ID'
155: ,p_base_table => irc_ivc_shd.g_tab_nam
156: );

Line 213: hr_api.mandatory_arg_error

209: Begin
210: --
211: hr_utility.set_location(' Entering:'||l_proc,10);
212: --
213: hr_api.mandatory_arg_error
214: (p_api_name => l_proc
215: ,p_argument => 'vacancy_id'
216: ,p_argument_value => p_vacancy_id
217: );

Line 417: l_var := hr_api.not_exists_in_hr_lookups

413: or (NOT l_api_updating)) then
414: --
415: -- Check that a valid 'Consideration Status' value is entered.
416: --
417: l_var := hr_api.not_exists_in_hr_lookups
418: (p_effective_date
419: ,'IRC_CONSIDERATION'
420: ,p_consideration_status
421: );