DBA Data[Home] [Help]

APPS.HR_TRN_SHD dependencies on HR_API_TRANSACTIONS

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 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: -- ----------------------------------------------------------------------------