DBA Data[Home] [Help]

APPS.GHR_REI_FLEX_DDF dependencies on HR_API

Line 166: hr_api.mandatory_arg_error

162: hr_utility.set_location('Entering: '|| l_proc, 10);
163: --
164: -- Check mandatory parameters have been set
165: --
166: hr_api.mandatory_arg_error
167: (p_api_name => l_proc
168: ,p_argument => 'effective date'
169: ,p_argument_value => p_effective_date
170: );

Line 182: nvl(ghr_rei_shd.g_old_rec.rei_information3,hr_api.g_varchar2)

178: (p_pa_request_extra_info_id => p_pa_request_extra_info_id
179: ,p_object_version_number => p_object_version_number
180: );
181: if ((l_api_updating and
182: nvl(ghr_rei_shd.g_old_rec.rei_information3,hr_api.g_varchar2)
183: <> nvl(p_reason_for_submission, hr_api.g_varchar2)) or
184: (not l_api_updating))
185: then
186: hr_utility.set_location(l_proc, 20);

Line 183: <> nvl(p_reason_for_submission, hr_api.g_varchar2)) or

179: ,p_object_version_number => p_object_version_number
180: );
181: if ((l_api_updating and
182: nvl(ghr_rei_shd.g_old_rec.rei_information3,hr_api.g_varchar2)
183: <> nvl(p_reason_for_submission, hr_api.g_varchar2)) or
184: (not l_api_updating))
185: then
186: hr_utility.set_location(l_proc, 20);
187: --

Line 194: if hr_api.not_exists_in_hr_lookups

190: -- where the lookup_type is 'GHR_US_SUBMISSION_REASON'
191: --
192: if p_reason_for_submission is not null
193: then
194: if hr_api.not_exists_in_hr_lookups
195: (p_effective_date => p_effective_date
196: ,p_lookup_type => 'GHR_US_SUBMISSION_REASON'
197: ,p_lookup_code => p_reason_for_submission
198: )

Line 263: hr_api.mandatory_arg_error

259: hr_utility.set_location('Entering: '|| l_proc, 10);
260: --
261: -- Check mandatory parameters have been set
262: --
263: hr_api.mandatory_arg_error
264: (p_api_name => l_proc
265: ,p_argument => 'service'
266: ,p_argument_value => p_service
267: );

Line 280: nvl(ghr_rei_shd.g_old_rec.rei_information5,hr_api.g_varchar2)

276: ,p_object_version_number => p_object_version_number
277: );
278: --
279: if ((l_api_updating and
280: nvl(ghr_rei_shd.g_old_rec.rei_information5,hr_api.g_varchar2)
281: <> nvl(p_service, hr_api.g_varchar2)) or
282: (not l_api_updating))
283: then
284: hr_utility.set_location(l_proc, 20);

Line 281: <> nvl(p_service, hr_api.g_varchar2)) or

277: );
278: --
279: if ((l_api_updating and
280: nvl(ghr_rei_shd.g_old_rec.rei_information5,hr_api.g_varchar2)
281: <> nvl(p_service, hr_api.g_varchar2)) or
282: (not l_api_updating))
283: then
284: hr_utility.set_location(l_proc, 20);
285: --

Line 292: if hr_api.not_exists_in_hr_lookups

288: -- where the lookup type is 'GHR_US_SERVICE'
289: --
290: if p_service is not null
291: then
292: if hr_api.not_exists_in_hr_lookups
293: (p_effective_date => p_effective_date
294: ,P_lookup_type => 'GHR_US_SERVICE'
295: ,p_lookup_code => p_service
296: )