DBA Data[Home] [Help]

APPS.PQH_CEP_SHD dependencies on PQH_COPY_ENTITY_PREFS

Line 26: ElsIf (p_constraint_name = 'PQH_COPY_ENTITY_PREFS_FK1') Then

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

Line 31: ElsIf (p_constraint_name = 'PQH_COPY_ENTITY_PREFS_FK2') Then

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

Line 36: ElsIf (p_constraint_name = 'PQH_COPY_ENTITY_PREFS_PK') Then

32: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
33: hr_utility.set_message_token('PROCEDURE', l_proc);
34: hr_utility.set_message_token('STEP','15');
35: hr_utility.raise_error;
36: ElsIf (p_constraint_name = 'PQH_COPY_ENTITY_PREFS_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','20');
40: hr_utility.raise_error;

Line 70: from pqh_copy_entity_prefs

66: table_route_id,
67: copy_entity_txn_id,
68: select_flag,
69: object_version_number
70: from pqh_copy_entity_prefs
71: where copy_entity_pref_id = p_copy_entity_pref_id;
72: --
73: l_proc varchar2(72) := g_package||'api_updating';
74: l_fct_ret boolean;

Line 144: from pqh_copy_entity_prefs

140: table_route_id,
141: copy_entity_txn_id,
142: select_flag,
143: object_version_number
144: from pqh_copy_entity_prefs
145: where copy_entity_pref_id = p_copy_entity_pref_id
146: for update nowait;
147: --
148: l_proc varchar2(72) := g_package||'lck';

Line 187: hr_utility.set_message_token('TABLE_NAME', 'pqh_copy_entity_prefs');

183: -- The object is locked therefore we need to supply a meaningful
184: -- error message.
185: --
186: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
187: hr_utility.set_message_token('TABLE_NAME', 'pqh_copy_entity_prefs');
188: hr_utility.raise_error;
189: End lck;
190: --
191: -- ----------------------------------------------------------------------------