DBA Data[Home] [Help]

APPS.IRC_IDO_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 => 'document_id'
38: ,p_argument_value => p_document_id
39: );

Line 68: hr_api.mandatory_arg_error

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

Line 365: and nvl(p_type,hr_api.g_varchar2)

361: (p_document_id => p_document_id,
362: p_object_version_number => p_object_version_number);
363: --
364: if (l_api_updating
365: and nvl(p_type,hr_api.g_varchar2)
366: <> nvl(irc_ido_shd.g_old_rec.type,hr_api.g_varchar2)
367: or not l_api_updating) then
368: --
369: -- check if value of type falls within lookup.

Line 366: <> nvl(irc_ido_shd.g_old_rec.type,hr_api.g_varchar2)

362: p_object_version_number => p_object_version_number);
363: --
364: if (l_api_updating
365: and nvl(p_type,hr_api.g_varchar2)
366: <> nvl(irc_ido_shd.g_old_rec.type,hr_api.g_varchar2)
367: or not l_api_updating) then
368: --
369: -- check if value of type falls within lookup.
370: --

Line 371: if hr_api.not_exists_in_hr_lookups(p_lookup_type => 'IRC_DOCUMENT_TYPE',

367: or not l_api_updating) then
368: --
369: -- check if value of type falls within lookup.
370: --
371: if hr_api.not_exists_in_hr_lookups(p_lookup_type => 'IRC_DOCUMENT_TYPE',
372: p_lookup_code => p_type,
373: p_effective_date => p_effective_date)
374: then
375: --

Line 441: hr_api.argument_changed_error

437: --
438: --
439: EXCEPTION
440: WHEN l_error THEN
441: hr_api.argument_changed_error
442: (p_api_name => l_proc
443: ,p_argument => l_argument);
444: WHEN OTHERS THEN
445: RAISE;