DBA Data[Home] [Help]

APPS.BEN_BDI_SHD dependencies on BEN_BATCH_DPNT_INFO

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

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

84: object_version_number,
85: enrt_cvg_strt_dt,
86: enrt_cvg_thru_dt,
87: actn_cd
88: from ben_batch_dpnt_info
89: where batch_dpnt_id = p_batch_dpnt_id;
90: --
91: l_proc varchar2(72) := g_package||'api_updating';
92: l_fct_ret boolean;

Line 170: from ben_batch_dpnt_info

166: object_version_number,
167: enrt_cvg_strt_dt,
168: enrt_cvg_thru_dt,
169: actn_cd
170: from ben_batch_dpnt_info
171: where batch_dpnt_id = p_batch_dpnt_id
172: for update nowait;
173: --
174: l_proc varchar2(72) := g_package||'lck';

Line 213: hr_utility.set_message_token('TABLE_NAME', 'ben_batch_dpnt_info');

209: -- The object is locked therefore we need to supply a meaningful
210: -- error message.
211: --
212: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
213: hr_utility.set_message_token('TABLE_NAME', 'ben_batch_dpnt_info');
214: hr_utility.raise_error;
215: End lck;
216: --
217: -- ----------------------------------------------------------------------------