DBA Data[Home] [Help]

APPS.IRC_PCV_BUS dependencies on HR_API

Line 35: hr_api.mandatory_arg_error

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

Line 65: hr_api.mandatory_arg_error

61: hr_utility.set_location('Entering:'|| l_proc, 10);
62: --
63: -- Ensure that all the mandatory parameter are not null
64: --
65: hr_api.mandatory_arg_error
66: (p_api_name => l_proc
67: ,p_argument => 'prof_area_criteria_value_id'
68: ,p_argument_value => p_prof_area_criteria_value_id
69: );

Line 129: hr_api.argument_changed_error

125: -- not been updated.
126: --
127: if p_rec.prof_area_criteria_value_id <>
128: irc_pcv_shd.g_old_rec.prof_area_criteria_value_id then
129: hr_api.argument_changed_error
130: (p_api_name => l_proc
131: ,p_argument => 'PROF_AREA_CRITERIA_VALUE_ID'
132: ,p_base_table => irc_pcv_shd.g_tab_nam
133: );

Line 138: hr_api.argument_changed_error

134: end if;
135: --
136: if p_rec.search_criteria_id <>
137: irc_pcv_shd.g_old_rec.search_criteria_id then
138: hr_api.argument_changed_error
139: (p_api_name => l_proc
140: ,p_argument => 'SEARCH_CRITERIA_ID'
141: ,p_base_table => irc_pcv_shd.g_tab_nam
142: );

Line 183: hr_api.mandatory_arg_error

179: --
180: begin
181: hr_utility.set_location('Entering:'||l_proc,10);
182: -- Check that search_criteria_id is not null.
183: hr_api.mandatory_arg_error
184: (p_api_name => l_proc
185: ,p_argument => 'SEARCH_CRITERIA_ID'
186: ,p_argument_value => p_search_criteria_id
187: );

Line 258: hr_api.mandatory_arg_error

254: --
255: begin
256: hr_utility.set_location('Entering:'||l_proc,10);
257: --
258: hr_api.mandatory_arg_error
259: (p_api_name => l_proc
260: ,p_argument => 'PROFESSIONAL_AREA'
261: ,p_argument_value => p_professional_area
262: );

Line 268: l_ret := hr_api.not_exists_in_hr_lookups(

264: hr_utility.set_location(l_proc,20);
265: if p_professional_area is not null then
266: -- Check that professional_area exists in hr_lookups
267: hr_utility.set_location(l_proc,30);
268: l_ret := hr_api.not_exists_in_hr_lookups(
269: p_effective_date => p_effective_date
270: ,p_lookup_type => 'IRC_PROFESSIONAL_AREA'
271: ,p_lookup_code => p_professional_area);
272: if l_ret = true then

Line 311: hr_api.mandatory_arg_error

307: --
308: -- Validate Dependent Attributes
309: --
310: hr_utility.set_location(l_proc, 20);
311: hr_api.mandatory_arg_error
312: (p_api_name => l_proc
313: ,p_argument => 'EFFECTIVE_DATE'
314: ,p_argument_value => p_effective_date
315: );