DBA Data[Home] [Help]

APPS.BEN_APL_SHD dependencies on BEN_ACTY_RT_PTD_LMT_F

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_ACTY_RT_PTD_LMT_F_FK1') Then
37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: fnd_message.set_token('PROCEDURE', l_proc);
39: fnd_message.set_token('STEP','5');
40: fnd_message.raise_error;

Line 41: ElsIf (p_constraint_name = 'BEN_ACTY_RT_PTD_LMT_F_PK') Then

37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: fnd_message.set_token('PROCEDURE', l_proc);
39: fnd_message.set_token('STEP','5');
40: fnd_message.raise_error;
41: ElsIf (p_constraint_name = 'BEN_ACTY_RT_PTD_LMT_F_PK') Then
42: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
43: fnd_message.set_token('PROCEDURE', l_proc);
44: fnd_message.set_token('STEP','10');
45: fnd_message.raise_error;

Line 108: from ben_acty_rt_ptd_lmt_f

104: apl_attribute28,
105: apl_attribute29,
106: apl_attribute30,
107: object_version_number
108: from ben_acty_rt_ptd_lmt_f
109: where acty_rt_ptd_lmt_id = p_acty_rt_ptd_lmt_id
110: and p_effective_date
111: between effective_start_date and effective_end_date;
112: --

Line 183: from ben_acty_rt_ptd_lmt_f t

179: --
180: Cursor C_Sel1 Is
181: select t.acty_base_rt_id ,
182: t.ptd_lmt_id
183: from ben_acty_rt_ptd_lmt_f t
184: where t.acty_rt_ptd_lmt_id = p_base_key_value
185: and p_effective_date
186: between t.effective_start_date and t.effective_end_date;
187: --

Line 206: p_base_table_name => 'ben_acty_rt_ptd_lmt_f',

202: -- Call the corresponding datetrack api
203: --
204: dt_api.find_dt_del_modes
205: (p_effective_date => p_effective_date,
206: p_base_table_name => 'ben_acty_rt_ptd_lmt_f',
207: p_base_key_column => 'acty_rt_ptd_lmt_id',
208: p_base_key_value => p_base_key_value,
209: p_parent_table_name1 => 'ben_acty_base_rt_f',
210: p_parent_key_column1 => 'acty_base_rt_id',

Line 243: p_base_table_name => 'ben_acty_rt_ptd_lmt_f',

239: -- Call the corresponding datetrack api
240: --
241: dt_api.find_dt_upd_modes
242: (p_effective_date => p_effective_date,
243: p_base_table_name => 'ben_acty_rt_ptd_lmt_f',
244: p_base_key_column => 'acty_rt_ptd_lmt_id',
245: p_base_key_value => p_base_key_value,
246: p_correction => p_correction,
247: p_update => p_update,

Line 276: (p_base_table_name => 'ben_acty_rt_ptd_lmt_f',

272: -- version number.
273: --
274: l_object_version_number :=
275: dt_api.get_object_version_number
276: (p_base_table_name => 'ben_acty_rt_ptd_lmt_f',
277: p_base_key_column => 'acty_rt_ptd_lmt_id',
278: p_base_key_value => p_base_key_value);
279: --
280: hr_utility.set_location(l_proc, 10);

Line 286: update ben_acty_rt_ptd_lmt_f t

282: --
283: -- Update the specified datetrack row setting the effective
284: -- end date to the specified new effective end date.
285: --
286: update ben_acty_rt_ptd_lmt_f t
287: set t.effective_end_date = p_new_effective_end_date,
288: t.object_version_number = l_object_version_number
289: where t.acty_rt_ptd_lmt_id = p_base_key_value
290: and p_effective_date

Line 363: from ben_acty_rt_ptd_lmt_f

359: apl_attribute28,
360: apl_attribute29,
361: apl_attribute30,
362: object_version_number
363: from ben_acty_rt_ptd_lmt_f
364: where acty_rt_ptd_lmt_id = p_acty_rt_ptd_lmt_id
365: and p_effective_date
366: between effective_start_date and effective_end_date
367: for update nowait;

Line 422: p_base_table_name => 'ben_acty_rt_ptd_lmt_f',

418: --
419: dt_api.validate_dt_mode
420: (p_effective_date => p_effective_date,
421: p_datetrack_mode => p_datetrack_mode,
422: p_base_table_name => 'ben_acty_rt_ptd_lmt_f',
423: p_base_key_column => 'acty_rt_ptd_lmt_id',
424: p_base_key_value => p_acty_rt_ptd_lmt_id,
425: p_parent_table_name1 => 'ben_acty_base_rt_f',
426: p_parent_key_column1 => 'acty_base_rt_id',

Line 462: fnd_message.set_token('TABLE_NAME', 'ben_acty_rt_ptd_lmt_f');

458: -- The object is locked therefore we need to supply a meaningful
459: -- error message.
460: --
461: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
462: fnd_message.set_token('TABLE_NAME', 'ben_acty_rt_ptd_lmt_f');
463: fnd_message.raise_error;
464: When l_object_invalid then
465: --
466: -- The object doesn't exist or is invalid

Line 469: fnd_message.set_token('TABLE_NAME', 'ben_acty_rt_ptd_lmt_f');

465: --
466: -- The object doesn't exist or is invalid
467: --
468: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
469: fnd_message.set_token('TABLE_NAME', 'ben_acty_rt_ptd_lmt_f');
470: fnd_message.raise_error;
471: End lck;
472: --
473: -- ----------------------------------------------------------------------------