DBA Data[Home] [Help]

APPS.HXC_HSD_BUS dependencies on HR_API

Line 62: hr_api.mandatory_arg_error

58: end if;
59: --
60: -- Ensure that all the mandatory parameter are not null
61: --
62: hr_api.mandatory_arg_error
63: (p_api_name => l_proc
64: ,p_argument => 'object_id'
65: ,p_argument_value => p_object_id
66: );

Line 67: hr_api.mandatory_arg_error

63: (p_api_name => l_proc
64: ,p_argument => 'object_id'
65: ,p_argument_value => p_object_id
66: );
67: hr_api.mandatory_arg_error
68: (p_api_name => l_proc
69: ,p_argument => 'object_type'
70: ,p_argument_value => p_object_type
71: );

Line 96: hr_api.set_security_group_id

92: close csr_sec_grp;
93: --
94: -- Set the security_group_id in CLIENT_INFO
95: --
96: hr_api.set_security_group_id
97: (p_security_group_id => l_security_group_id
98: );
99: --
100: -- Set the sessions legislation context in HR_SESSION_DATA

Line 102: hr_api.set_legislation_context(l_legislation_code);

98: );
99: --
100: -- Set the sessions legislation context in HR_SESSION_DATA
101: --
102: hr_api.set_legislation_context(l_legislation_code);
103: end if;
104: --
105: if g_debug then
106: hr_utility.set_location(' Leaving:'|| l_proc, 20);

Line 152: hr_api.mandatory_arg_error

148: end if;
149: --
150: -- Ensure that all the mandatory parameter are not null
151: --
152: hr_api.mandatory_arg_error
153: (p_api_name => l_proc
154: ,p_argument => 'object_id'
155: ,p_argument_value => p_object_id
156: );

Line 157: hr_api.mandatory_arg_error

153: (p_api_name => l_proc
154: ,p_argument => 'object_id'
155: ,p_argument_value => p_object_id
156: );
157: hr_api.mandatory_arg_error
158: (p_api_name => l_proc
159: ,p_argument => 'object_type'
160: ,p_argument_value => p_object_type
161: );

Line 163: if (( nvl(hxc_hsd_bus.g_object_id, hr_api.g_number)

159: ,p_argument => 'object_type'
160: ,p_argument_value => p_object_type
161: );
162: --
163: if (( nvl(hxc_hsd_bus.g_object_id, hr_api.g_number)
164: = p_object_id)
165: and ( nvl(hxc_hsd_bus.g_object_type, hr_api.g_varchar2)
166: = p_object_type)) then
167: --

Line 165: and ( nvl(hxc_hsd_bus.g_object_type, hr_api.g_varchar2)

161: );
162: --
163: if (( nvl(hxc_hsd_bus.g_object_id, hr_api.g_number)
164: = p_object_id)
165: and ( nvl(hxc_hsd_bus.g_object_type, hr_api.g_varchar2)
166: = p_object_type)) then
167: --
168: -- The legislation code has already been found with a previous
169: -- call to this function. Just return the value in the global

Line 440: hr_api.mandatory_arg_error

436: l_proc varchar2(72) := g_package || 'chk_object';
437: Begin
438:
439: if p_object_type is null then
440: hr_api.mandatory_arg_error
441: (p_api_name => l_proc
442: ,p_argument => 'object_type'
443: ,p_argument_value => p_object_type
444: );

Line 448: hr_api.mandatory_arg_error

444: );
445: end if;
446:
447: if p_object_id is null then
448: hr_api.mandatory_arg_error
449: (p_api_name => l_proc
450: ,p_argument => 'object_id'
451: ,p_argument_value => p_object_id
452: );