DBA Data[Home] [Help]

APPS.HR_TRS_SHD dependencies on HR_API

Line 36: If (p_constraint_name = 'HR_API_TRANSACTION_STEPS_FK1') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'HR_API_TRANSACTION_STEPS_FK1') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;

Line 41: ElsIf (p_constraint_name = 'HR_API_TRANSACTION_STEPS_PK') Then

37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'HR_API_TRANSACTION_STEPS_PK') Then
42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 120: from hr_api_transaction_steps

116: information27,
117: information28,
118: information29,
119: information30
120: from hr_api_transaction_steps
121: where transaction_step_id = p_transaction_step_id;
122: --
123: l_proc varchar2(72) := g_package||'api_updating';
124: l_fct_ret boolean;

Line 240: from hr_api_transaction_steps

236: information27,
237: information28,
238: information29,
239: information30
240: from hr_api_transaction_steps
241: where transaction_step_id = p_transaction_step_id
242: for update nowait;
243: --
244: l_proc varchar2(72) := g_package||'lck';

Line 251: -- hr_api.mandatory_arg_error

247: hr_utility.set_location('Entering:'||l_proc, 5);
248: --
249: -- Add any mandatory argument checking here:
250: -- Example:
251: -- hr_api.mandatory_arg_error
252: -- (p_api_name => l_proc,
253: -- p_argument => 'object_version_number',
254: -- p_argument_value => p_object_version_number);
255: --

Line 277: When HR_Api.Object_Locked then

273: --
274: -- We need to trap the ORA LOCK exception
275: --
276: Exception
277: When HR_Api.Object_Locked then
278: --
279: -- The object is locked therefore we need to supply a meaningful
280: -- error message.
281: --

Line 283: hr_utility.set_message_token('TABLE_NAME', 'hr_api_transaction_steps');

279: -- The object is locked therefore we need to supply a meaningful
280: -- error message.
281: --
282: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
283: hr_utility.set_message_token('TABLE_NAME', 'hr_api_transaction_steps');
284: hr_utility.raise_error;
285: End lck;
286: --
287: -- ----------------------------------------------------------------------------