DBA Data[Home] [Help]

APPS.IRC_VCE_BUS dependencies on HR_API

Line 49: hr_api.mandatory_arg_error

45: hr_utility.set_location('Entering:'|| l_proc, 10);
46: --
47: -- Ensure that all the mandatory parameter are not null
48: --
49: hr_api.mandatory_arg_error
50: (p_api_name => l_proc
51: ,p_argument => 'vacancy_id'
52: ,p_argument_value => p_vacancy_id
53: );

Line 54: hr_api.mandatory_arg_error

50: (p_api_name => l_proc
51: ,p_argument => 'vacancy_id'
52: ,p_argument_value => p_vacancy_id
53: );
54: hr_api.mandatory_arg_error
55: (p_api_name => l_proc
56: ,p_argument => 'variable_comp_lookup'
57: ,p_argument_value => p_variable_comp_lookup
58: );

Line 82: hr_api.set_security_group_id

78: close csr_sec_grp;
79: --
80: -- Set the security_group_id in CLIENT_INFO
81: --
82: hr_api.set_security_group_id
83: (p_security_group_id => l_security_group_id
84: );
85: end if;
86: --

Line 125: hr_api.mandatory_arg_error

121: hr_utility.set_location('Entering:'|| l_proc, 10);
122: --
123: -- Ensure that all the mandatory parameter are not null
124: --
125: hr_api.mandatory_arg_error
126: (p_api_name => l_proc
127: ,p_argument => 'vacancy_id'
128: ,p_argument_value => p_vacancy_id
129: );

Line 130: hr_api.mandatory_arg_error

126: (p_api_name => l_proc
127: ,p_argument => 'vacancy_id'
128: ,p_argument_value => p_vacancy_id
129: );
130: hr_api.mandatory_arg_error
131: (p_api_name => l_proc
132: ,p_argument => 'variable_comp_lookup'
133: ,p_argument_value => p_variable_comp_lookup
134: );

Line 136: if (( nvl(irc_vce_bus.g_vacancy_id, hr_api.g_number)

132: ,p_argument => 'variable_comp_lookup'
133: ,p_argument_value => p_variable_comp_lookup
134: );
135: --
136: if (( nvl(irc_vce_bus.g_vacancy_id, hr_api.g_number)
137: = p_vacancy_id)
138: and ( nvl(irc_vce_bus.g_variable_comp_lookup, hr_api.g_varchar2)
139: = p_variable_comp_lookup)) then
140: --

Line 138: and ( nvl(irc_vce_bus.g_variable_comp_lookup, hr_api.g_varchar2)

134: );
135: --
136: if (( nvl(irc_vce_bus.g_vacancy_id, hr_api.g_number)
137: = p_vacancy_id)
138: and ( nvl(irc_vce_bus.g_variable_comp_lookup, hr_api.g_varchar2)
139: = p_variable_comp_lookup)) then
140: --
141: -- The legislation code has already been found with a previous
142: -- call to this function. Just return the value in the global

Line 269: hr_api.mandatory_arg_error

265: --
266: begin
267: hr_utility.set_location('Entering:'||l_proc,10);
268: -- Checks that variable compensation lookup is passed as mandatory argument.
269: hr_api.mandatory_arg_error
270: (p_api_name => l_proc
271: ,p_argument => 'variable_comp_lookup'
272: ,p_argument_value => p_variable_comp_lookup
273: );

Line 276: l_ret := hr_api.not_exists_in_hr_lookups(

272: ,p_argument_value => p_variable_comp_lookup
273: );
274: -- Checks that variable compensation lookup is validated against hr_lookups.
275: hr_utility.set_location(l_proc,15);
276: l_ret := hr_api.not_exists_in_hr_lookups(
277: p_effective_date => p_effective_date
278: ,p_lookup_type => 'IRC_VARIABLE_COMP_ELEMENT'
279: ,p_lookup_code => p_variable_comp_lookup);
280: hr_utility.set_location(l_proc,20);

Line 333: and p_effective_date < NVL(pav.date_to,hr_api.g_eot);

329: l_vacancy_id varchar2(1);
330: --
331: cursor csr_vacancy_id is
332: select null from per_all_vacancies pav where pav.vacancy_id = p_vacancy_id
333: and p_effective_date < NVL(pav.date_to,hr_api.g_eot);
334: --
335: begin
336: hr_utility.set_location('Entering:'||l_proc,10);
337: -- Checks that vacancy_id is passed as mandatory attribute

Line 338: hr_api.mandatory_arg_error

334: --
335: begin
336: hr_utility.set_location('Entering:'||l_proc,10);
337: -- Checks that vacancy_id is passed as mandatory attribute
338: hr_api.mandatory_arg_error
339: (p_api_name => l_proc
340: ,p_argument => 'vacancy_id'
341: ,p_argument_value => p_vacancy_id
342: );