DBA Data[Home] [Help]

APPS.HR_TRN_SHD dependencies on HR_API

Line 41: ElsIf (p_constraint_name = 'HR_API_TRANSACTIONS_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_TRANSACTIONS_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 97: from hr_api_transactions

93: relaunch_function,
94: transaction_group,
95: transaction_identifier,
96: transaction_document
97: from hr_api_transactions
98: where transaction_id = p_transaction_id;
99: --
100: -- plan_id, rptg_grp_id, effective_date_option added by sanej
101: --

Line 191: from hr_api_transactions

187: relaunch_function,
188: transaction_group,
189: transaction_identifier,
190: transaction_document
191: from hr_api_transactions
192: where transaction_id = p_transaction_id
193: for update nowait;
194: --
195: -- plan_id, rptg_grp_id, effective_date_option added by sanej

Line 204: -- hr_api.mandatory_arg_error

200: hr_utility.set_location('Entering:'||l_proc, 5);
201: --
202: -- Add any mandatory argument checking here:
203: -- Example:
204: -- hr_api.mandatory_arg_error
205: -- (p_api_name => l_proc,
206: -- p_argument => 'object_version_number',
207: -- p_argument_value => p_object_version_number);
208: --

Line 227: When HR_Api.Object_Locked then

223: --
224: -- We need to trap the ORA LOCK exception
225: --
226: Exception
227: When HR_Api.Object_Locked then
228: --
229: -- The object is locked therefore we need to supply a meaningful
230: -- error message.
231: --

Line 233: hr_utility.set_message_token('TABLE_NAME', 'hr_api_transactions');

229: -- The object is locked therefore we need to supply a meaningful
230: -- error message.
231: --
232: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
233: hr_utility.set_message_token('TABLE_NAME', 'hr_api_transactions');
234: hr_utility.raise_error;
235: End lck;
236: --
237: -- ----------------------------------------------------------------------------