DBA Data[Home] [Help]

APPS.PQH_PTE_SHD dependencies on PQH_PTX_EXTRA_INFO

Line 22: If (p_constraint_name = 'PQH_PTX_EXTRA_INFO_FK1') Then

18: --
19: Begin
20: hr_utility.set_location('Entering:'||l_proc, 5);
21: --
22: If (p_constraint_name = 'PQH_PTX_EXTRA_INFO_FK1') Then
23: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
24: hr_utility.set_message_token('PROCEDURE', l_proc);
25: hr_utility.set_message_token('STEP','5');
26: hr_utility.raise_error;

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

23: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
24: hr_utility.set_message_token('PROCEDURE', l_proc);
25: hr_utility.set_message_token('STEP','5');
26: hr_utility.raise_error;
27: ElsIf (p_constraint_name = 'PQH_PTX_EXTRA_INFO_FK2') Then
28: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
29: hr_utility.set_message_token('PROCEDURE', l_proc);
30: hr_utility.set_message_token('STEP','10');
31: hr_utility.raise_error;

Line 32: ElsIf (p_constraint_name = 'PQH_PTX_EXTRA_INFO_PK') Then

28: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
29: hr_utility.set_message_token('PROCEDURE', l_proc);
30: hr_utility.set_message_token('STEP','10');
31: hr_utility.raise_error;
32: ElsIf (p_constraint_name = 'PQH_PTX_EXTRA_INFO_PK') Then
33: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
34: hr_utility.set_message_token('PROCEDURE', l_proc);
35: hr_utility.set_message_token('STEP','15');
36: hr_utility.raise_error;

Line 118: from pqh_ptx_extra_info

114: attribute18,
115: attribute19,
116: attribute20,
117: object_version_number
118: from pqh_ptx_extra_info
119: where ptx_extra_info_id = p_ptx_extra_info_id;
120: --
121: l_proc varchar2(72) := g_package||'api_updating';
122: l_fct_ret boolean;

Line 244: from pqh_ptx_extra_info

240: attribute18,
241: attribute19,
242: attribute20,
243: object_version_number
244: from pqh_ptx_extra_info
245: where ptx_extra_info_id = p_ptx_extra_info_id
246: for update nowait;
247: --
248: l_proc varchar2(72) := g_package||'lck';

Line 287: hr_utility.set_message_token('TABLE_NAME', 'pqh_ptx_extra_info');

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