DBA Data[Home] [Help]

APPS.GHR_PAH_SHD dependencies on GHR_PA_HISTORY

Line 36: If (p_constraint_name = 'GHR_PA_HISTORY_FK1') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'GHR_PA_HISTORY_FK1') 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','5');
40: hr_utility.raise_error;

Line 41: ElsIf (p_constraint_name = 'GHR_PA_HISTORY_FK2') 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','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'GHR_PA_HISTORY_FK2') Then
42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 46: ElsIf (p_constraint_name = 'GHR_PA_HISTORY_FK3') Then

42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;
46: ElsIf (p_constraint_name = 'GHR_PA_HISTORY_FK3') Then
47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;

Line 51: ElsIf (p_constraint_name = 'GHR_PA_HISTORY_PK') Then

47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;
51: ElsIf (p_constraint_name = 'GHR_PA_HISTORY_PK') Then
52: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
53: hr_utility.set_message_token('PROCEDURE', l_proc);
54: hr_utility.set_message_token('STEP','20');
55: hr_utility.raise_error;

Line 290: from ghr_pa_history

286: information197,
287: information198,
288: information199,
289: information200
290: from ghr_pa_history
291: where pa_history_id = p_pa_history_id;
292: --
293: l_proc varchar2(72) := g_package||'api_updating';
294: l_fct_ret boolean;

Line 564: from ghr_pa_history

560: information197,
561: information198,
562: information199,
563: information200
564: from ghr_pa_history
565: where pa_history_id = p_pa_history_id
566: for update nowait;
567: --
568: l_proc varchar2(72) := g_package||'lck';

Line 604: hr_utility.set_message_token('TABLE_NAME', 'ghr_pa_history');

600: -- The object is locked therefore we need to supply a meaningful
601: -- error message.
602: --
603: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
604: hr_utility.set_message_token('TABLE_NAME', 'ghr_pa_history');
605: hr_utility.raise_error;
606: End lck;
607: --
608: -- ----------------------------------------------------------------------------