DBA Data[Home] [Help]

APPS.BEN_WCN_SHD dependencies on BEN_WV_PRTN_RSN_CTFN_PL_F

Line 36: If (p_constraint_name = 'BEN_WV_PRTN_RSN_CTFN_PL_F_PK') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_WV_PRTN_RSN_CTFN_PL_F_PK') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;

Line 112: from ben_wv_prtn_rsn_ctfn_pl_f

108: wcn_attribute28,
109: wcn_attribute29,
110: wcn_attribute30,
111: object_version_number
112: from ben_wv_prtn_rsn_ctfn_pl_f
113: where wv_prtn_rsn_ctfn_pl_id = p_wv_prtn_rsn_ctfn_pl_id
114: and p_effective_date
115: between effective_start_date and effective_end_date;
116: --

Line 185: from ben_wv_prtn_rsn_ctfn_pl_f t

181: l_parent_key_value1 number;
182: --
183: Cursor C_Sel1 Is
184: select t.wv_prtn_rsn_pl_id
185: from ben_wv_prtn_rsn_ctfn_pl_f t
186: where t.wv_prtn_rsn_ctfn_pl_id = p_base_key_value
187: and p_effective_date
188: between t.effective_start_date and t.effective_end_date;
189: --

Line 207: p_base_table_name => 'ben_wv_prtn_rsn_ctfn_pl_f',

203: -- Call the corresponding datetrack api
204: --
205: dt_api.find_dt_del_modes
206: (p_effective_date => p_effective_date,
207: p_base_table_name => 'ben_wv_prtn_rsn_ctfn_pl_f',
208: p_base_key_column => 'wv_prtn_rsn_ctfn_pl_id',
209: p_base_key_value => p_base_key_value,
210: p_parent_table_name1 => 'ben_wv_prtn_rsn_pl_f',
211: p_parent_key_column1 => 'wv_prtn_rsn_pl_id',

Line 241: p_base_table_name => 'ben_wv_prtn_rsn_ctfn_pl_f',

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

Line 274: (p_base_table_name => 'ben_wv_prtn_rsn_ctfn_pl_f',

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

Line 284: update ben_wv_prtn_rsn_ctfn_pl_f t

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

Line 365: from ben_wv_prtn_rsn_ctfn_pl_f

361: wcn_attribute28,
362: wcn_attribute29,
363: wcn_attribute30,
364: object_version_number
365: from ben_wv_prtn_rsn_ctfn_pl_f
366: where wv_prtn_rsn_ctfn_pl_id = p_wv_prtn_rsn_ctfn_pl_id
367: and p_effective_date
368: between effective_start_date and effective_end_date
369: for update nowait;

Line 424: p_base_table_name => 'ben_wv_prtn_rsn_ctfn_pl_f',

420: --
421: dt_api.validate_dt_mode
422: (p_effective_date => p_effective_date,
423: p_datetrack_mode => p_datetrack_mode,
424: p_base_table_name => 'ben_wv_prtn_rsn_ctfn_pl_f',
425: p_base_key_column => 'wv_prtn_rsn_ctfn_pl_id',
426: p_base_key_value => p_wv_prtn_rsn_ctfn_pl_id,
427: p_parent_table_name1 => 'ben_wv_prtn_rsn_pl_f',
428: p_parent_key_column1 => 'wv_prtn_rsn_pl_id',

Line 461: hr_utility.set_message_token('TABLE_NAME', 'ben_wv_prtn_rsn_ctfn_pl_f');

457: -- The object is locked therefore we need to supply a meaningful
458: -- error message.
459: --
460: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
461: hr_utility.set_message_token('TABLE_NAME', 'ben_wv_prtn_rsn_ctfn_pl_f');
462: hr_utility.raise_error;
463: When l_object_invalid then
464: --
465: -- The object doesn't exist or is invalid

Line 468: hr_utility.set_message_token('TABLE_NAME', 'ben_wv_prtn_rsn_ctfn_pl_f');

464: --
465: -- The object doesn't exist or is invalid
466: --
467: hr_utility.set_message(801, 'HR_7155_OBJECT_INVALID');
468: hr_utility.set_message_token('TABLE_NAME', 'ben_wv_prtn_rsn_ctfn_pl_f');
469: hr_utility.raise_error;
470: End lck;
471: --
472: -- ----------------------------------------------------------------------------