DBA Data[Home] [Help]

APPS.BEN_PGI_SHD dependencies on BEN_PGM_EXTRA_INFO

Line 21: If (p_constraint_name = 'BEN_PGM_EXTRA_INFO_FK1') Then

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'BEN_PGM_EXTRA_INFO_FK1') Then
22: hr_utility.set_message(801, 'HR_INV_INFO_TYPE');
23: hr_utility.raise_error;
24: ElsIf (p_constraint_name = 'BEN_PGM_EXTRA_INFO_FK2') Then
25: hr_utility.set_message(801, 'HR_INV_pl_ID');

Line 24: ElsIf (p_constraint_name = 'BEN_PGM_EXTRA_INFO_FK2') Then

20: --
21: If (p_constraint_name = 'BEN_PGM_EXTRA_INFO_FK1') Then
22: hr_utility.set_message(801, 'HR_INV_INFO_TYPE');
23: hr_utility.raise_error;
24: ElsIf (p_constraint_name = 'BEN_PGM_EXTRA_INFO_FK2') Then
25: hr_utility.set_message(801, 'HR_INV_pl_ID');
26: hr_utility.raise_error;
27: ElsIf (p_constraint_name = 'BEN_PGM_EXTRA_INFO_PK') Then
28: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');

Line 27: ElsIf (p_constraint_name = 'BEN_PGM_EXTRA_INFO_PK') Then

23: hr_utility.raise_error;
24: ElsIf (p_constraint_name = 'BEN_PGM_EXTRA_INFO_FK2') Then
25: hr_utility.set_message(801, 'HR_INV_pl_ID');
26: hr_utility.raise_error;
27: ElsIf (p_constraint_name = 'BEN_PGM_EXTRA_INFO_PK') 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','15');
31: hr_utility.raise_error;

Line 117: from BEN_pgm_extra_info

113: pgi_information28,
114: pgi_information29,
115: pgi_information30,
116: object_version_number
117: from BEN_pgm_extra_info
118: where pgm_extra_info_id = p_pgm_extra_info_id;
119: --
120: l_proc varchar2(72) := g_package||'api_updating';
121: l_fct_ret boolean;

Line 246: from ben_pgm_extra_info

242: pgi_information28,
243: pgi_information29,
244: pgi_information30,
245: object_version_number
246: from ben_pgm_extra_info
247: where pgm_extra_info_id = p_pgm_extra_info_id
248: for update nowait;
249: --
250: l_proc varchar2(72) := g_package||'lck';

Line 289: hr_utility.set_message_token('TABLE_NAME', 'BEN_PGM_EXTRA_INFO');

285: -- The object is locked therefore we need to supply a meaningful
286: -- error message.
287: --
288: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
289: hr_utility.set_message_token('TABLE_NAME', 'BEN_PGM_EXTRA_INFO');
290: hr_utility.raise_error;
291: End lck;
292: --
293: -- ----------------------------------------------------------------------------