DBA Data[Home] [Help]

APPS.BEN_DCR_SHD dependencies on BEN_DPNT_CVG_RQD_RLSHP_F

Line 113: from ben_dpnt_cvg_rqd_rlshp_f

109: dcr_attribute28,
110: dcr_attribute29,
111: dcr_attribute30,
112: object_version_number
113: from ben_dpnt_cvg_rqd_rlshp_f
114: where dpnt_cvg_rqd_rlshp_id = p_dpnt_cvg_rqd_rlshp_id
115: and p_effective_date
116: between effective_start_date and effective_end_date;
117: --

Line 186: from ben_dpnt_cvg_rqd_rlshp_f t

182: l_parent_key_value1 number;
183: --
184: Cursor C_Sel1 Is
185: select t.dpnt_cvg_eligy_prfl_id
186: from ben_dpnt_cvg_rqd_rlshp_f t
187: where t.dpnt_cvg_rqd_rlshp_id = p_base_key_value
188: and p_effective_date
189: between t.effective_start_date and t.effective_end_date;
190: --

Line 208: p_base_table_name => 'ben_dpnt_cvg_rqd_rlshp_f',

204: -- Call the corresponding datetrack api
205: --
206: dt_api.find_dt_del_modes
207: (p_effective_date => p_effective_date,
208: p_base_table_name => 'ben_dpnt_cvg_rqd_rlshp_f',
209: p_base_key_column => 'dpnt_cvg_rqd_rlshp_id',
210: p_base_key_value => p_base_key_value,
211: p_parent_table_name1 => 'ben_dpnt_cvg_eligy_prfl_f',
212: p_parent_key_column1 => 'dpnt_cvg_eligy_prfl_id',

Line 242: p_base_table_name => 'ben_dpnt_cvg_rqd_rlshp_f',

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

Line 275: (p_base_table_name => 'ben_dpnt_cvg_rqd_rlshp_f',

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

Line 285: update ben_dpnt_cvg_rqd_rlshp_f t

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

Line 366: from ben_dpnt_cvg_rqd_rlshp_f

362: dcr_attribute28,
363: dcr_attribute29,
364: dcr_attribute30,
365: object_version_number
366: from ben_dpnt_cvg_rqd_rlshp_f
367: where dpnt_cvg_rqd_rlshp_id = p_dpnt_cvg_rqd_rlshp_id
368: and p_effective_date
369: between effective_start_date and effective_end_date
370: for update nowait;

Line 425: p_base_table_name => 'ben_dpnt_cvg_rqd_rlshp_f',

421: --
422: dt_api.validate_dt_mode
423: (p_effective_date => p_effective_date,
424: p_datetrack_mode => p_datetrack_mode,
425: p_base_table_name => 'ben_dpnt_cvg_rqd_rlshp_f',
426: p_base_key_column => 'dpnt_cvg_rqd_rlshp_id',
427: p_base_key_value => p_dpnt_cvg_rqd_rlshp_id,
428: p_parent_table_name1 => 'ben_dpnt_cvg_eligy_prfl_f',
429: p_parent_key_column1 => 'dpnt_cvg_eligy_prfl_id',

Line 462: fnd_message.set_token('TABLE_NAME', 'ben_dpnt_cvg_rqd_rlshp_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_dpnt_cvg_rqd_rlshp_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_dpnt_cvg_rqd_rlshp_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_dpnt_cvg_rqd_rlshp_f');
470: fnd_message.raise_error;
471: End lck;
472: --
473: -- ----------------------------------------------------------------------------