DBA Data[Home] [Help]

APPS.BEN_EPG_SHD dependencies on BEN_ELIG_PPL_GRP_PRTE_F

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

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

Line 107: from ben_elig_ppl_grp_prte_f

103: epg_attribute30,
104: object_version_number,
105: criteria_score,
106: criteria_weight
107: from ben_elig_ppl_grp_prte_f
108: where elig_ppl_grp_prte_id = p_elig_ppl_grp_prte_id
109: and p_effective_date
110: between effective_start_date and effective_end_date;
111: --

Line 180: from ben_elig_ppl_grp_prte_f t

176: l_parent_key_value1 number;
177: --
178: Cursor C_Sel1 Is
179: select t.eligy_prfl_id
180: from ben_elig_ppl_grp_prte_f t
181: where t.elig_ppl_grp_prte_id = p_base_key_value
182: and p_effective_date
183: between t.effective_start_date and t.effective_end_date;
184: --

Line 202: p_base_table_name => 'ben_elig_ppl_grp_prte_f',

198: -- Call the corresponding datetrack api
199: --
200: dt_api.find_dt_del_modes
201: (p_effective_date => p_effective_date,
202: p_base_table_name => 'ben_elig_ppl_grp_prte_f',
203: p_base_key_column => 'elig_ppl_grp_prte_id',
204: p_base_key_value => p_base_key_value,
205: p_parent_table_name1 => 'ben_eligy_prfl_f',
206: p_parent_key_column1 => 'eligy_prfl_id',

Line 236: p_base_table_name => 'ben_elig_ppl_grp_prte_f',

232: -- Call the corresponding datetrack api
233: --
234: dt_api.find_dt_upd_modes
235: (p_effective_date => p_effective_date,
236: p_base_table_name => 'ben_elig_ppl_grp_prte_f',
237: p_base_key_column => 'elig_ppl_grp_prte_id',
238: p_base_key_value => p_base_key_value,
239: p_correction => p_correction,
240: p_update => p_update,

Line 269: (p_base_table_name => 'ben_elig_ppl_grp_prte_f',

265: -- version number.
266: --
267: l_object_version_number :=
268: dt_api.get_object_version_number
269: (p_base_table_name => 'ben_elig_ppl_grp_prte_f',
270: p_base_key_column => 'elig_ppl_grp_prte_id',
271: p_base_key_value => p_base_key_value);
272: --
273: hr_utility.set_location(l_proc, 10);

Line 279: update ben_elig_ppl_grp_prte_f t

275: --
276: -- Update the specified datetrack row setting the effective
277: -- end date to the specified new effective end date.
278: --
279: update ben_elig_ppl_grp_prte_f t
280: set t.effective_end_date = p_new_effective_end_date,
281: t.object_version_number = l_object_version_number
282: where t.elig_ppl_grp_prte_id = p_base_key_value
283: and p_effective_date

Line 360: from ben_elig_ppl_grp_prte_f

356: epg_attribute30,
357: object_version_number ,
358: criteria_score,
359: criteria_weight
360: from ben_elig_ppl_grp_prte_f
361: where elig_ppl_grp_prte_id = p_elig_ppl_grp_prte_id
362: and p_effective_date
363: between effective_start_date and effective_end_date
364: for update nowait;

Line 419: p_base_table_name => 'ben_elig_ppl_grp_prte_f',

415: --
416: dt_api.validate_dt_mode
417: (p_effective_date => p_effective_date,
418: p_datetrack_mode => p_datetrack_mode,
419: p_base_table_name => 'ben_elig_ppl_grp_prte_f',
420: p_base_key_column => 'elig_ppl_grp_prte_id',
421: p_base_key_value => p_elig_ppl_grp_prte_id,
422: p_parent_table_name1 => 'ben_eligy_prfl_f',
423: p_parent_key_column1 => 'eligy_prfl_id',

Line 456: hr_utility.set_message_token('TABLE_NAME', 'ben_elig_ppl_grp_prte_f');

452: -- The object is locked therefore we need to supply a meaningful
453: -- error message.
454: --
455: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
456: hr_utility.set_message_token('TABLE_NAME', 'ben_elig_ppl_grp_prte_f');
457: hr_utility.raise_error;
458: When l_object_invalid then
459: --
460: -- The object doesn't exist or is invalid

Line 463: hr_utility.set_message_token('TABLE_NAME', 'ben_elig_ppl_grp_prte_f');

459: --
460: -- The object doesn't exist or is invalid
461: --
462: hr_utility.set_message(801, 'HR_7155_OBJECT_INVALID');
463: hr_utility.set_message_token('TABLE_NAME', 'ben_elig_ppl_grp_prte_f');
464: hr_utility.raise_error;
465: End lck;
466: --
467: -- ----------------------------------------------------------------------------