DBA Data[Home] [Help]

APPS.HR_TMP_SHD dependencies on HR_API

Line 219: hr_api.mandatory_arg_error

215: --
216: Begin
217: hr_utility.set_location('Entering:'||l_proc, 5);
218: --
219: hr_api.mandatory_arg_error
220: (p_api_name => l_proc
221: ,p_argument => 'FORM_TEMPLATE_ID'
222: ,p_argument_value => p_form_template_id
223: );

Line 225: hr_api.mandatory_arg_error

221: ,p_argument => 'FORM_TEMPLATE_ID'
222: ,p_argument_value => p_form_template_id
223: );
224: --Bug:1790746 fix Start
225: hr_api.mandatory_arg_error
226: (p_api_name => l_proc
227: ,p_argument => 'object_version_number'
228: ,p_argument_value => p_object_version_number
229: );

Line 253: When HR_Api.Object_Locked then

249: --
250: -- We need to trap the ORA LOCK exception
251: --
252: Exception
253: When HR_Api.Object_Locked then
254: --
255: -- The object is locked therefore we need to supply a meaningful
256: -- error message.
257: --

Line 318: IF p_template_name <> hr_api.g_varchar2 THEN

314: l_rec.form_template_id := p_form_template_id;
315: l_rec.object_version_number := p_object_version_number;
316: l_rec.application_id := p_application_id;
317: l_rec.form_id := p_form_id;
318: IF p_template_name <> hr_api.g_varchar2 THEN
319: l_rec.template_name := UPPER(p_template_name);
320: ELSE
321: l_rec.template_name := p_template_name;
322: END IF;