DBA Data[Home] [Help]

APPS.BEN_NOC_SHD dependencies on BEN_NO_OTHR_CVG_RT_F

Line 103: from ben_no_othr_cvg_rt_f

99: noc_attribute28,
100: noc_attribute29,
101: noc_attribute30,
102: object_version_number
103: from ben_no_othr_cvg_rt_f
104: where no_othr_cvg_rt_id = p_no_othr_cvg_rt_id
105: and p_effective_date
106: between effective_start_date and effective_end_date;
107: --

Line 176: from ben_no_othr_cvg_rt_f t

172: l_parent_key_value1 number;
173: --
174: Cursor C_Sel1 Is
175: select t.vrbl_rt_prfl_id
176: from ben_no_othr_cvg_rt_f t
177: where t.no_othr_cvg_rt_id = p_base_key_value
178: and p_effective_date
179: between t.effective_start_date and t.effective_end_date;
180: --

Line 198: p_base_table_name => 'ben_no_othr_cvg_rt_f',

194: -- Call the corresponding datetrack api
195: --
196: dt_api.find_dt_del_modes
197: (p_effective_date => p_effective_date,
198: p_base_table_name => 'ben_no_othr_cvg_rt_f',
199: p_base_key_column => 'no_othr_cvg_rt_id',
200: p_base_key_value => p_base_key_value,
201: p_parent_table_name1 => 'ben_vrbl_rt_prfl_f',
202: p_parent_key_column1 => 'vrbl_rt_prfl_id',

Line 232: p_base_table_name => 'ben_no_othr_cvg_rt_f',

228: -- Call the corresponding datetrack api
229: --
230: dt_api.find_dt_upd_modes
231: (p_effective_date => p_effective_date,
232: p_base_table_name => 'ben_no_othr_cvg_rt_f',
233: p_base_key_column => 'no_othr_cvg_rt_id',
234: p_base_key_value => p_base_key_value,
235: p_correction => p_correction,
236: p_update => p_update,

Line 265: (p_base_table_name => 'ben_no_othr_cvg_rt_f',

261: -- version number.
262: --
263: l_object_version_number :=
264: dt_api.get_object_version_number
265: (p_base_table_name => 'ben_no_othr_cvg_rt_f',
266: p_base_key_column => 'no_othr_cvg_rt_id',
267: p_base_key_value => p_base_key_value);
268: --
269: hr_utility.set_location(l_proc, 10);

Line 275: update ben_no_othr_cvg_rt_f t

271: --
272: -- Update the specified datetrack row setting the effective
273: -- end date to the specified new effective end date.
274: --
275: update ben_no_othr_cvg_rt_f t
276: set t.effective_end_date = p_new_effective_end_date,
277: t.object_version_number = l_object_version_number
278: where t.no_othr_cvg_rt_id = p_base_key_value
279: and p_effective_date

Line 352: from ben_no_othr_cvg_rt_f

348: noc_attribute28,
349: noc_attribute29,
350: noc_attribute30,
351: object_version_number
352: from ben_no_othr_cvg_rt_f
353: where no_othr_cvg_rt_id = p_no_othr_cvg_rt_id
354: and p_effective_date
355: between effective_start_date and effective_end_date
356: for update nowait;

Line 411: p_base_table_name => 'ben_no_othr_cvg_rt_f',

407: --
408: dt_api.validate_dt_mode
409: (p_effective_date => p_effective_date,
410: p_datetrack_mode => p_datetrack_mode,
411: p_base_table_name => 'ben_no_othr_cvg_rt_f',
412: p_base_key_column => 'no_othr_cvg_rt_id',
413: p_base_key_value => p_no_othr_cvg_rt_id,
414: p_parent_table_name1 => 'ben_vrbl_rt_prfl_f',
415: p_parent_key_column1 => 'vrbl_rt_prfl_id',

Line 448: fnd_message.set_token('TABLE_NAME', 'ben_no_othr_cvg_rt_f');

444: -- The object is locked therefore we need to supply a meaningful
445: -- error message.
446: --
447: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
448: fnd_message.set_token('TABLE_NAME', 'ben_no_othr_cvg_rt_f');
449: fnd_message.raise_error;
450: When l_object_invalid then
451: --
452: -- The object doesn't exist or is invalid

Line 455: fnd_message.set_token('TABLE_NAME', 'ben_no_othr_cvg_rt_f');

451: --
452: -- The object doesn't exist or is invalid
453: --
454: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
455: fnd_message.set_token('TABLE_NAME', 'ben_no_othr_cvg_rt_f');
456: fnd_message.raise_error;
457: End lck;
458: --
459: -- ----------------------------------------------------------------------------