DBA Data[Home] [Help]

APPS.BEN_XRS_SHD dependencies on BEN_EXT_RSLT

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

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

Line 96: from ben_ext_rslt

92: request_id,
93: output_type,
94: xdo_template_id,
95: object_version_number
96: from ben_ext_rslt
97: where ext_rslt_id = p_ext_rslt_id;
98: --
99: l_proc varchar2(72) := g_package||'api_updating';
100: l_fct_ret boolean;

Line 186: from ben_ext_rslt

182: request_id,
183: output_type,
184: xdo_template_id,
185: object_version_number
186: from ben_ext_rslt
187: where ext_rslt_id = p_ext_rslt_id
188: for update nowait;
189: --
190: l_proc varchar2(72) := g_package||'lck';

Line 229: hr_utility.set_message_token('TABLE_NAME', 'ben_ext_rslt');

225: -- The object is locked therefore we need to supply a meaningful
226: -- error message.
227: --
228: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
229: hr_utility.set_message_token('TABLE_NAME', 'ben_ext_rslt');
230: hr_utility.raise_error;
231: End lck;
232: --
233: -- ----------------------------------------------------------------------------