DBA Data[Home] [Help]

APPS.HR_LEI_SHD dependencies on HR_LOCATION_EXTRA_INFO

Line 21: If (p_constraint_name = 'HR_LOCATION_EXTRA_INFO_FK1') Then

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'HR_LOCATION_EXTRA_INFO_FK1') Then
22: hr_utility.set_message(800, 'HR_INV_INFO_TYPE');
23: hr_utility.raise_error;
24: ElsIf (p_constraint_name = 'HR_LOCATION_EXTRA_INFO_FK2') Then
25: hr_utility.set_message(800, 'HR_INV_LOCATION_ID');

Line 24: ElsIf (p_constraint_name = 'HR_LOCATION_EXTRA_INFO_FK2') Then

20: --
21: If (p_constraint_name = 'HR_LOCATION_EXTRA_INFO_FK1') Then
22: hr_utility.set_message(800, 'HR_INV_INFO_TYPE');
23: hr_utility.raise_error;
24: ElsIf (p_constraint_name = 'HR_LOCATION_EXTRA_INFO_FK2') Then
25: hr_utility.set_message(800, 'HR_INV_LOCATION_ID');
26: hr_utility.raise_error;
27: ElsIf (p_constraint_name = 'HR_LOCATION_EXTRA_INFO_PK') Then
28: hr_utility.set_message(800, 'HR_ALL_PROCEDURE_FAIL');

Line 27: ElsIf (p_constraint_name = 'HR_LOCATION_EXTRA_INFO_PK') Then

23: hr_utility.raise_error;
24: ElsIf (p_constraint_name = 'HR_LOCATION_EXTRA_INFO_FK2') Then
25: hr_utility.set_message(800, 'HR_INV_LOCATION_ID');
26: hr_utility.raise_error;
27: ElsIf (p_constraint_name = 'HR_LOCATION_EXTRA_INFO_PK') Then
28: hr_utility.set_message(800, 'HR_ALL_PROCEDURE_FAIL');
29: hr_utility.set_message_token('PROCEDURE', l_proc);
30: hr_utility.set_message_token('STEP','15');
31: hr_utility.raise_error;

Line 116: from hr_location_extra_info

112: lei_information28,
113: lei_information29,
114: lei_information30,
115: object_version_number
116: from hr_location_extra_info
117: where location_extra_info_id = p_location_extra_info_id;
118: --
119: l_proc varchar2(72) := g_package||'api_updating';
120: l_fct_ret boolean;

Line 246: from hr_location_extra_info

242: lei_information28,
243: lei_information29,
244: lei_information30,
245: object_version_number
246: from hr_location_extra_info
247: where location_extra_info_id = p_location_extra_info_id
248: for update nowait;
249: --
250: l_proc varchar2(72) := g_package||'lck';

Line 289: hr_utility.set_message_token('TABLE_NAME', 'hr_location_extra_info');

285: -- The object is locked therefore we need to supply a meaningful
286: -- error message.
287: --
288: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
289: hr_utility.set_message_token('TABLE_NAME', 'hr_location_extra_info');
290: hr_utility.raise_error;
291: End lck;
292: --
293: -- ----------------------------------------------------------------------------