DBA Data[Home] [Help]

APPS.BEN_WPN_SHD dependencies on BEN_WV_PRTN_RSN_PL_F

Line 104: from ben_wv_prtn_rsn_pl_f

100: wpn_attribute28,
101: wpn_attribute29,
102: wpn_attribute30,
103: object_version_number
104: from ben_wv_prtn_rsn_pl_f
105: where wv_prtn_rsn_pl_id = p_wv_prtn_rsn_pl_id
106: and p_effective_date
107: between effective_start_date and effective_end_date;
108: --

Line 177: from ben_wv_prtn_rsn_pl_f t

173: l_parent_key_value1 number;
174: --
175: Cursor C_Sel1 Is
176: select t.pl_id
177: from ben_wv_prtn_rsn_pl_f t
178: where t.wv_prtn_rsn_pl_id = p_base_key_value
179: and p_effective_date
180: between t.effective_start_date and t.effective_end_date;
181: --

Line 199: p_base_table_name => 'ben_wv_prtn_rsn_pl_f',

195: -- Call the corresponding datetrack api
196: --
197: dt_api.find_dt_del_modes
198: (p_effective_date => p_effective_date,
199: p_base_table_name => 'ben_wv_prtn_rsn_pl_f',
200: p_base_key_column => 'wv_prtn_rsn_pl_id',
201: p_base_key_value => p_base_key_value,
202: p_parent_table_name1 => 'ben_pl_f',
203: p_parent_key_column1 => 'pl_id',

Line 233: p_base_table_name => 'ben_wv_prtn_rsn_pl_f',

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

Line 266: (p_base_table_name => 'ben_wv_prtn_rsn_pl_f',

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

Line 276: update ben_wv_prtn_rsn_pl_f t

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

Line 354: from ben_wv_prtn_rsn_pl_f

350: wpn_attribute28,
351: wpn_attribute29,
352: wpn_attribute30,
353: object_version_number
354: from ben_wv_prtn_rsn_pl_f
355: where wv_prtn_rsn_pl_id = p_wv_prtn_rsn_pl_id
356: and p_effective_date
357: between effective_start_date and effective_end_date
358: for update nowait;

Line 413: p_base_table_name => 'ben_wv_prtn_rsn_pl_f',

409: --
410: dt_api.validate_dt_mode
411: (p_effective_date => p_effective_date,
412: p_datetrack_mode => p_datetrack_mode,
413: p_base_table_name => 'ben_wv_prtn_rsn_pl_f',
414: p_base_key_column => 'wv_prtn_rsn_pl_id',
415: p_base_key_value => p_wv_prtn_rsn_pl_id,
416: p_parent_table_name1 => 'ben_pl_f',
417: p_parent_key_column1 => 'pl_id',

Line 450: hr_utility.set_message_token('TABLE_NAME', 'ben_wv_prtn_rsn_pl_f');

446: -- The object is locked therefore we need to supply a meaningful
447: -- error message.
448: --
449: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
450: hr_utility.set_message_token('TABLE_NAME', 'ben_wv_prtn_rsn_pl_f');
451: hr_utility.raise_error;
452: When l_object_invalid then
453: --
454: -- The object doesn't exist or is invalid

Line 457: hr_utility.set_message_token('TABLE_NAME', 'ben_wv_prtn_rsn_pl_f');

453: --
454: -- The object doesn't exist or is invalid
455: --
456: hr_utility.set_message(801, 'HR_7155_OBJECT_INVALID');
457: hr_utility.set_message_token('TABLE_NAME', 'ben_wv_prtn_rsn_pl_f');
458: hr_utility.raise_error;
459: End lck;
460: --
461: -- ----------------------------------------------------------------------------