DBA Data[Home] [Help]

APPS.HR_PFT_SHD dependencies on HR_API

Line 128: hr_api.mandatory_arg_error

124: --
125: Begin
126: hr_utility.set_location('Entering:'||l_proc, 5);
127: --
128: hr_api.mandatory_arg_error
129: (p_api_name => l_proc
130: ,p_argument => 'POSITION_ID'
131: ,p_argument_value => p_position_id
132: );

Line 134: hr_api.mandatory_arg_error

130: ,p_argument => 'POSITION_ID'
131: ,p_argument_value => p_position_id
132: );
133: hr_utility.set_location(l_proc,6);
134: hr_api.mandatory_arg_error
135: (p_api_name => l_proc
136: ,p_argument => 'LANGUAGE'
137: ,p_argument_value => p_language
138: );

Line 158: When HR_Api.Object_Locked then

154: --
155: -- We need to trap the ORA LOCK exception
156: --
157: Exception
158: When HR_Api.Object_Locked then
159: --
160: -- The object is locked therefore we need to supply a meaningful
161: -- error message.
162: --

Line 193: where psf.effective_end_date = hr_api.g_eot

189: from per_position_definitions psd
190: , hr_all_positions_f_tl pft
191: , hr_all_positions_f psf
192: , fnd_languages l
193: where psf.effective_end_date = hr_api.g_eot
194: and psd.position_definition_id = psf.position_definition_id
195: and psf.position_id = pft.position_id
196: and pft.language = userenv('LANG')
197: and l.installed_flag in ('I', 'B')