DBA Data[Home] [Help]

APPS.BEN_BRI_SHD dependencies on BEN_BATCH_RATE_INFO

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

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

94: enrt_cvg_strt_dt,
95: enrt_cvg_thru_dt,
96: actn_cd,
97: close_actn_itm_dt
98: from ben_batch_rate_info
99: where batch_rt_id = p_batch_rt_id;
100: --
101: l_proc varchar2(72) := g_package||'api_updating';
102: l_fct_ret boolean;

Line 190: from ben_batch_rate_info

186: enrt_cvg_strt_dt,
187: enrt_cvg_thru_dt,
188: actn_cd,
189: close_actn_itm_dt
190: from ben_batch_rate_info
191: where batch_rt_id = p_batch_rt_id
192: for update nowait;
193: --
194: l_proc varchar2(72) := g_package||'lck';

Line 233: hr_utility.set_message_token('TABLE_NAME', 'ben_batch_rate_info');

229: -- The object is locked therefore we need to supply a meaningful
230: -- error message.
231: --
232: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
233: hr_utility.set_message_token('TABLE_NAME', 'ben_batch_rate_info');
234: hr_utility.raise_error;
235: End lck;
236: --
237: -- ----------------------------------------------------------------------------