DBA Data[Home] [Help]

APPS.HR_TRV_SHD dependencies on HR_API

Line 41: ElsIf (p_constraint_name = 'HR_API_TRANSACTION_VALUES_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;
41: ElsIf (p_constraint_name = 'HR_API_TRANSACTION_VALUES_FK1') 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 46: ElsIf (p_constraint_name = 'HR_API_TRANSACTION_VALUES_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;
46: ElsIf (p_constraint_name = 'HR_API_TRANSACTION_VALUES_PK') Then
47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;

Line 84: from hr_api_transaction_values

80: date_value,
81: original_varchar2_value,
82: original_number_value,
83: original_date_value
84: from hr_api_transaction_values
85: where transaction_value_id = p_transaction_value_id;
86: --
87: l_proc varchar2(72) := g_package||'api_updating';
88: l_fct_ret boolean;

Line 157: from hr_api_transaction_values

153: date_value,
154: original_varchar2_value,
155: original_number_value,
156: original_date_value
157: from hr_api_transaction_values
158: where transaction_value_id = p_transaction_value_id
159: for update nowait;
160: --
161: l_proc varchar2(72) := g_package||'lck';

Line 168: -- hr_api.mandatory_arg_error

164: hr_utility.set_location('Entering:'||l_proc, 5);
165: --
166: -- Add any mandatory argument checking here:
167: -- Example:
168: -- hr_api.mandatory_arg_error
169: -- (p_api_name => l_proc,
170: -- p_argument => 'object_version_number',
171: -- p_argument_value => p_object_version_number);
172: --

Line 191: When HR_Api.Object_Locked then

187: --
188: -- We need to trap the ORA LOCK exception
189: --
190: Exception
191: When HR_Api.Object_Locked then
192: --
193: -- The object is locked therefore we need to supply a meaningful
194: -- error message.
195: --

Line 197: hr_utility.set_message_token('TABLE_NAME', 'hr_api_transaction_values');

193: -- The object is locked therefore we need to supply a meaningful
194: -- error message.
195: --
196: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
197: hr_utility.set_message_token('TABLE_NAME', 'hr_api_transaction_values');
198: hr_utility.raise_error;
199: End lck;
200: --
201: -- ----------------------------------------------------------------------------