DBA Data[Home] [Help]

APPS.BEN_BEI_SHD dependencies on BEN_BATCH_ELIG_INFO

Line 41: ElsIf (p_constraint_name = 'BEN_BATCH_ELIG_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;
41: ElsIf (p_constraint_name = 'BEN_BATCH_ELIG_INFO_FK1') 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_ELIG_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;
46: ElsIf (p_constraint_name = 'BEN_BATCH_ELIG_INFO_FK2') 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 51: ElsIf (p_constraint_name = 'BEN_BATCH_ELIG_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;
51: ElsIf (p_constraint_name = 'BEN_BATCH_ELIG_INFO_PK') Then
52: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
53: hr_utility.set_message_token('PROCEDURE', l_proc);
54: hr_utility.set_message_token('STEP','20');
55: hr_utility.raise_error;

Line 90: from ben_batch_elig_info

86: elig_flag,
87: inelig_text,
88: business_group_id,
89: object_version_number
90: from ben_batch_elig_info
91: where batch_elig_id = p_batch_elig_id;
92: --
93: l_proc varchar2(72) := g_package||'api_updating';
94: l_fct_ret boolean;

Line 169: from ben_batch_elig_info

165: elig_flag,
166: inelig_text,
167: business_group_id,
168: object_version_number
169: from ben_batch_elig_info
170: where batch_elig_id = p_batch_elig_id
171: for update nowait;
172: --
173: l_proc varchar2(72) := g_package||'lck';

Line 212: hr_utility.set_message_token('TABLE_NAME', 'ben_batch_elig_info');

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