DBA Data[Home] [Help]

APPS.BEN_RAN_SHD dependencies on BEN_BATCH_RANGES

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_BATCH_RANGES_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_RANGES_PK') 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_RANGES_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;

Line 76: from ben_batch_ranges

72: range_status_cd,
73: starting_person_action_id,
74: ending_person_action_id,
75: object_version_number
76: from ben_batch_ranges
77: where range_id = p_range_id;
78: --
79: l_proc varchar2(72) := g_package||'api_updating';
80: l_fct_ret boolean;

Line 151: from ben_batch_ranges

147: range_status_cd,
148: starting_person_action_id,
149: ending_person_action_id,
150: object_version_number
151: from ben_batch_ranges
152: where range_id = p_range_id
153: for update nowait;
154: --
155: l_proc varchar2(72) := g_package||'lck';

Line 194: hr_utility.set_message_token('TABLE_NAME', 'ben_batch_ranges');

190: -- The object is locked therefore we need to supply a meaningful
191: -- error message.
192: --
193: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
194: hr_utility.set_message_token('TABLE_NAME', 'ben_batch_ranges');
195: hr_utility.raise_error;
196: End lck;
197: --
198: -- ----------------------------------------------------------------------------