DBA Data[Home] [Help]

APPS.GHR_NLA_SHD dependencies on GHR_NOAC_LAS

Line 23: If (p_constraint_name = 'GHR_NOAC_LAS_FK1') Then

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

Line 28: ElsIf (p_constraint_name = 'GHR_NOAC_LAS_PK') Then

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

Line 66: from ghr_noac_las

62: date_to,
63: object_version_number,
64: valid_first_lac_flag,
65: valid_second_lac_flag
66: from ghr_noac_las
67: where noac_la_id = p_noac_la_id;
68: --
69: l_proc varchar2(72);
70: l_fct_ret boolean;

Line 145: from ghr_noac_las

141: date_to,
142: object_version_number,
143: valid_first_lac_flag,
144: valid_second_lac_flag
145: from ghr_noac_las
146: where noac_la_id = p_noac_la_id
147: for update nowait;
148: --
149: l_proc varchar2(72);

Line 189: hr_utility.set_message_token('TABLE_NAME', 'ghr_noac_las');

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