DBA Data[Home] [Help]

APPS.BEN_LAR_SHD dependencies on BEN_LOA_RSN_RT_F

Line 107: from ben_loa_rsn_rt_f

103: lar_attribute30,
104: absence_attendance_type_id,
105: abs_attendance_reason_id,
106: object_version_number
107: from ben_loa_rsn_rt_f
108: where loa_rsn_rt_id = p_loa_rsn_rt_id
109: and p_effective_date
110: between effective_start_date and effective_end_date;
111: --

Line 181: from ben_loa_rsn_rt_f t

177: l_parent_key_value1 number;
178: --
179: Cursor C_Sel1 Is
180: select t.vrbl_rt_prfl_id
181: from ben_loa_rsn_rt_f t
182: where t.loa_rsn_rt_id = p_base_key_value
183: and p_effective_date
184: between t.effective_start_date and t.effective_end_date;
185: --

Line 204: p_base_table_name => 'ben_loa_rsn_rt_f',

200: -- Call the corresponding datetrack api
201: --
202: dt_api.find_dt_del_modes
203: (p_effective_date => p_effective_date,
204: p_base_table_name => 'ben_loa_rsn_rt_f',
205: p_base_key_column => 'loa_rsn_rt_id',
206: p_base_key_value => p_base_key_value,
207: p_parent_table_name1 => 'ben_vrbl_rt_prfl_f',
208: p_parent_key_column1 => 'vrbl_rt_prfl_id',

Line 238: p_base_table_name => 'ben_loa_rsn_rt_f',

234: -- Call the corresponding datetrack api
235: --
236: dt_api.find_dt_upd_modes
237: (p_effective_date => p_effective_date,
238: p_base_table_name => 'ben_loa_rsn_rt_f',
239: p_base_key_column => 'loa_rsn_rt_id',
240: p_base_key_value => p_base_key_value,
241: p_correction => p_correction,
242: p_update => p_update,

Line 271: (p_base_table_name => 'ben_loa_rsn_rt_f',

267: -- version number.
268: --
269: l_object_version_number :=
270: dt_api.get_object_version_number
271: (p_base_table_name => 'ben_loa_rsn_rt_f',
272: p_base_key_column => 'loa_rsn_rt_id',
273: p_base_key_value => p_base_key_value);
274: --
275: hr_utility.set_location(l_proc, 10);

Line 281: update ben_loa_rsn_rt_f t

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

Line 362: from ben_loa_rsn_rt_f

358: lar_attribute30,
359: absence_attendance_type_id,
360: abs_attendance_reason_id,
361: object_version_number
362: from ben_loa_rsn_rt_f
363: where loa_rsn_rt_id = p_loa_rsn_rt_id
364: and p_effective_date
365: between effective_start_date and effective_end_date
366: for update nowait;

Line 421: p_base_table_name => 'ben_loa_rsn_rt_f',

417: --
418: dt_api.validate_dt_mode
419: (p_effective_date => p_effective_date,
420: p_datetrack_mode => p_datetrack_mode,
421: p_base_table_name => 'ben_loa_rsn_rt_f',
422: p_base_key_column => 'loa_rsn_rt_id',
423: p_base_key_value => p_loa_rsn_rt_id,
424: p_parent_table_name1 => 'ben_vrbl_rt_prfl_f',
425: p_parent_key_column1 => 'vrbl_rt_prfl_id',

Line 458: fnd_message.set_token('TABLE_NAME', 'ben_loa_rsn_rt_f');

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

Line 465: fnd_message.set_token('TABLE_NAME', 'ben_loa_rsn_rt_f');

461: --
462: -- The object doesn't exist or is invalid
463: --
464: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
465: fnd_message.set_token('TABLE_NAME', 'ben_loa_rsn_rt_f');
466: fnd_message.raise_error;
467: End lck;
468: --
469: -- ----------------------------------------------------------------------------