DBA Data[Home] [Help]

APPS.PQH_PLG_SHD dependencies on PQH_PROCESS_LOG

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

18: --
19: Begin
20: hr_utility.set_location('Entering:'||l_proc, 5);
21: --
22: If (p_constraint_name = 'PQH_PROCESS_LOG_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_PROCESS_LOG_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_PROCESS_LOG_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 99: from pqh_process_log

95: information28,
96: information29,
97: information30,
98: object_version_number
99: from pqh_process_log
100: where process_log_id = p_process_log_id;
101: --
102: l_proc varchar2(72) := g_package||'api_updating';
103: l_fct_ret boolean;

Line 211: from pqh_process_log

207: information28,
208: information29,
209: information30,
210: object_version_number
211: from pqh_process_log
212: where process_log_id = p_process_log_id
213: for update nowait;
214: --
215: l_proc varchar2(72) := g_package||'lck';

Line 254: hr_utility.set_message_token('TABLE_NAME', 'pqh_process_log');

250: -- The object is locked therefore we need to supply a meaningful
251: -- error message.
252: --
253: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
254: hr_utility.set_message_token('TABLE_NAME', 'pqh_process_log');
255: hr_utility.raise_error;
256: End lck;
257: --
258: -- ----------------------------------------------------------------------------