DBA Data[Home] [Help]

APPS.BEN_BPI_SHD dependencies on BEN_BATCH_PROC_INFO

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

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

85: per_proc_succ ,
86: per_err,
87: business_group_id,
88: object_version_number
89: from ben_batch_proc_info
90: where batch_proc_id = p_batch_proc_id;
91: --
92: l_proc varchar2(72) := g_package||'api_updating';
93: l_fct_ret boolean;

Line 172: from ben_batch_proc_info

168: per_proc_succ ,
169: per_err,
170: business_group_id,
171: object_version_number
172: from ben_batch_proc_info
173: where batch_proc_id = p_batch_proc_id
174: for update nowait;
175: --
176: l_proc varchar2(72) := g_package||'lck';

Line 215: hr_utility.set_message_token('TABLE_NAME', 'ben_batch_proc_info');

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