DBA Data[Home] [Help]

APPS.BEN_ABC_SHD dependencies on BEN_ACTY_BASE_RT_CTFN_F

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

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

101: abc_attribute28,
102: abc_attribute29,
103: abc_attribute30,
104: object_version_number
105: from ben_acty_base_rt_ctfn_f
106: where acty_base_rt_ctfn_id = p_acty_base_rt_ctfn_id
107: and p_effective_date
108: between effective_start_date and effective_end_date;
109: --

Line 180: from ben_acty_base_rt_ctfn_f t

176: l_parent_key_value2 number;
177: --
178: Cursor C_Sel1 Is
179: select t.acty_base_rt_id
180: from ben_acty_base_rt_ctfn_f t
181: where t.acty_base_rt_ctfn_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_acty_base_rt_ctfn_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_acty_base_rt_ctfn_f',
203: p_base_key_column => 'acty_base_rt_ctfn_id',
204: p_base_key_value => p_base_key_value,
205: p_parent_table_name1 => 'ben_acty_base_rt_f',
206: p_parent_key_column1 => 'acty_base_rt_id',

Line 236: p_base_table_name => 'ben_acty_base_rt_ctfn_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_acty_base_rt_ctfn_f',
237: p_base_key_column => 'acty_base_rt_ctfn_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_acty_base_rt_ctfn_f',

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

Line 279: update ben_acty_base_rt_ctfn_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_acty_base_rt_ctfn_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.acty_base_rt_ctfn_id = p_base_key_value
283: and p_effective_date

Line 358: from ben_acty_base_rt_ctfn_f

354: abc_attribute28,
355: abc_attribute29,
356: abc_attribute30,
357: object_version_number
358: from ben_acty_base_rt_ctfn_f
359: where acty_base_rt_ctfn_id = p_acty_base_rt_ctfn_id
360: and p_effective_date
361: between effective_start_date and effective_end_date
362: for update nowait;

Line 417: p_base_table_name => 'ben_acty_base_rt_ctfn_f',

413: --
414: dt_api.validate_dt_mode
415: (p_effective_date => p_effective_date,
416: p_datetrack_mode => p_datetrack_mode,
417: p_base_table_name => 'ben_acty_base_rt_ctfn_f',
418: p_base_key_column => 'acty_base_rt_ctfn_id',
419: p_base_key_value => p_acty_base_rt_ctfn_id,
420: p_parent_table_name1 => 'ben_acty_base_rt_f',
421: p_parent_key_column1 => 'acty_base_rt_id',

Line 454: fnd_message.set_token('TABLE_NAME', 'ben_acty_base_rt_ctfn_f');

450: -- The object is locked therefore we need to supply a meaningful
451: -- error message.
452: --
453: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
454: fnd_message.set_token('TABLE_NAME', 'ben_acty_base_rt_ctfn_f');
455: fnd_message.raise_error;
456: When l_object_invalid then
457: --
458: -- The object doesn't exist or is invalid

Line 461: fnd_message.set_token('TABLE_NAME', 'ben_acty_base_rt_ctfn_f');

457: --
458: -- The object doesn't exist or is invalid
459: --
460: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
461: fnd_message.set_token('TABLE_NAME', 'ben_acty_base_rt_ctfn_f');
462: fnd_message.raise_error;
463: End lck;
464: --
465: -- ----------------------------------------------------------------------------