DBA Data[Home] [Help]

APPS.BEN_PBM_SHD dependencies on BEN_PL_R_OIPL_PREM_BY_MO_F

Line 113: from ben_pl_r_oipl_prem_by_mo_f

109: request_id,
110: program_id,
111: program_application_id,
112: program_update_date
113: from ben_pl_r_oipl_prem_by_mo_f
114: where pl_r_oipl_prem_by_mo_id = p_pl_r_oipl_prem_by_mo_id
115: and p_effective_date
116: between effective_start_date and effective_end_date;
117: --

Line 186: from ben_pl_r_oipl_prem_by_mo_f t

182: l_parent_key_value1 number;
183: --
184: Cursor C_Sel1 Is
185: select t.actl_prem_id
186: from ben_pl_r_oipl_prem_by_mo_f t
187: where t.pl_r_oipl_prem_by_mo_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_pl_r_oipl_prem_by_mo_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_pl_r_oipl_prem_by_mo_f',
209: p_base_key_column => 'pl_r_oipl_prem_by_mo_id',
210: p_base_key_value => p_base_key_value,
211: p_parent_table_name1 => 'ben_actl_prem_f',
212: p_parent_key_column1 => 'actl_prem_id',

Line 242: p_base_table_name => 'ben_pl_r_oipl_prem_by_mo_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_pl_r_oipl_prem_by_mo_f',
243: p_base_key_column => 'pl_r_oipl_prem_by_mo_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_pl_r_oipl_prem_by_mo_f',

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

Line 285: update ben_pl_r_oipl_prem_by_mo_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_pl_r_oipl_prem_by_mo_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.pl_r_oipl_prem_by_mo_id = p_base_key_value
289: and p_effective_date

Line 372: from ben_pl_r_oipl_prem_by_mo_f

368: request_id,
369: program_id,
370: program_application_id,
371: program_update_date
372: from ben_pl_r_oipl_prem_by_mo_f
373: where pl_r_oipl_prem_by_mo_id = p_pl_r_oipl_prem_by_mo_id
374: and p_effective_date
375: between effective_start_date and effective_end_date
376: for update nowait;

Line 431: p_base_table_name => 'ben_pl_r_oipl_prem_by_mo_f',

427: --
428: dt_api.validate_dt_mode
429: (p_effective_date => p_effective_date,
430: p_datetrack_mode => p_datetrack_mode,
431: p_base_table_name => 'ben_pl_r_oipl_prem_by_mo_f',
432: p_base_key_column => 'pl_r_oipl_prem_by_mo_id',
433: p_base_key_value => p_pl_r_oipl_prem_by_mo_id,
434: p_parent_table_name1 => 'ben_actl_prem_f',
435: p_parent_key_column1 => 'actl_prem_id',

Line 468: fnd_message.set_token('TABLE_NAME', 'ben_pl_r_oipl_prem_by_mo_f');

464: -- The object is locked therefore we need to supply a meaningful
465: -- error message.
466: --
467: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
468: fnd_message.set_token('TABLE_NAME', 'ben_pl_r_oipl_prem_by_mo_f');
469: fnd_message.raise_error;
470: When l_object_invalid then
471: --
472: -- The object doesn't exist or is invalid

Line 475: fnd_message.set_token('TABLE_NAME', 'ben_pl_r_oipl_prem_by_mo_f');

471: --
472: -- The object doesn't exist or is invalid
473: --
474: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
475: fnd_message.set_token('TABLE_NAME', 'ben_pl_r_oipl_prem_by_mo_f');
476: fnd_message.raise_error;
477: End lck;
478: --
479: -- ----------------------------------------------------------------------------