DBA Data[Home] [Help]

APPS.GHR_NRE_SHD dependencies on GHR_NOAC_REMARKS

Line 23: If (p_constraint_name = 'GHR_NOAC_REMARKS_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_REMARKS_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_REMARKS_FK2') 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_REMARKS_FK2') 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 33: ElsIf (p_constraint_name = 'GHR_NOAC_REMARKS_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;
33: ElsIf (p_constraint_name = 'GHR_NOAC_REMARKS_PK') Then
34: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
35: hr_utility.set_message_token('PROCEDURE', l_proc);
36: hr_utility.set_message_token('STEP','15');
37: hr_utility.raise_error;

Line 70: from ghr_noac_remarks

66: enabled_flag,
67: date_from,
68: date_to,
69: object_version_number
70: from ghr_noac_remarks
71: where noac_remark_id = p_noac_remark_id;
72: --
73: l_proc varchar2(72);
74: l_fct_ret boolean;

Line 148: from ghr_noac_remarks

144: enabled_flag,
145: date_from,
146: date_to,
147: object_version_number
148: from ghr_noac_remarks
149: where noac_remark_id = p_noac_remark_id
150: for update nowait;
151: --
152: l_proc varchar2(72);

Line 192: hr_utility.set_message_token('TABLE_NAME', 'ghr_noac_remarks');

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