DBA Data[Home] [Help]

APPS.PE_PEI_SHD dependencies on PER_PEOPLE_EXTRA_INFO

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

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

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

20: --
21: If (p_constraint_name = 'PER_PEOPLE_EXTRA_INFO_FK1') Then
22: hr_utility.set_message(800, 'HR_INV_INFO_TYPE');
23: hr_utility.raise_error;
24: ElsIf (p_constraint_name = 'PER_PEOPLE_EXTRA_INFO_PK') Then
25: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
26: hr_utility.set_message_token('PROCEDURE', l_proc);
27: hr_utility.set_message_token('STEP','10');
28: hr_utility.raise_error;

Line 113: from per_people_extra_info

109: pei_information28,
110: pei_information29,
111: pei_information30,
112: object_version_number
113: from per_people_extra_info
114: where person_extra_info_id = p_person_extra_info_id;
115: --
116: l_proc varchar2(72) := g_package||'api_updating';
117: l_fct_ret boolean;

Line 242: from per_people_extra_info

238: pei_information28,
239: pei_information29,
240: pei_information30,
241: object_version_number
242: from per_people_extra_info
243: where person_extra_info_id = p_person_extra_info_id
244: for update nowait;
245: --
246: l_proc varchar2(72) := g_package||'lck';

Line 285: hr_utility.set_message_token('TABLE_NAME', 'per_people_extra_info');

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