DBA Data[Home] [Help]

APPS.BEN_BPL_SHD dependencies on BEN_BNFT_PRVDD_LDGR_F

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_BNFT_PRVDD_LDGR_FK2') 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 128: from ben_bnft_prvdd_ldgr_f

124: ann_prvdd_val,
125: ann_rld_up_val,
126: ann_used_val,
127: ann_cash_recd_val
128: from ben_bnft_prvdd_ldgr_f
129: where bnft_prvdd_ldgr_id = p_bnft_prvdd_ldgr_id
130: and p_effective_date
131: between effective_start_date and effective_end_date;
132: --

Line 205: from ben_bnft_prvdd_ldgr_f t

201: Cursor C_Sel1 Is
202: select t.acty_base_rt_id,
203: t.bnft_prvdr_pool_id,
204: t.prtt_enrt_rslt_id
205: from ben_bnft_prvdd_ldgr_f t
206: where t.bnft_prvdd_ldgr_id = p_base_key_value
207: and p_effective_date
208: between t.effective_start_date and t.effective_end_date;
209: --

Line 229: p_base_table_name => 'ben_bnft_prvdd_ldgr_f',

225: -- Call the corresponding datetrack api
226: --
227: dt_api.find_dt_del_modes
228: (p_effective_date => p_effective_date,
229: p_base_table_name => 'ben_bnft_prvdd_ldgr_f',
230: p_base_key_column => 'bnft_prvdd_ldgr_id',
231: p_base_key_value => p_base_key_value,
232: p_parent_table_name1 => 'ben_acty_base_rt_f',
233: p_parent_key_column1 => 'acty_base_rt_id',

Line 269: p_base_table_name => 'ben_bnft_prvdd_ldgr_f',

265: -- Call the corresponding datetrack api
266: --
267: dt_api.find_dt_upd_modes
268: (p_effective_date => p_effective_date,
269: p_base_table_name => 'ben_bnft_prvdd_ldgr_f',
270: p_base_key_column => 'bnft_prvdd_ldgr_id',
271: p_base_key_value => p_base_key_value,
272: p_correction => p_correction,
273: p_update => p_update,

Line 302: (p_base_table_name => 'ben_bnft_prvdd_ldgr_f',

298: -- version number.
299: --
300: l_object_version_number :=
301: dt_api.get_object_version_number
302: (p_base_table_name => 'ben_bnft_prvdd_ldgr_f',
303: p_base_key_column => 'bnft_prvdd_ldgr_id',
304: p_base_key_value => p_base_key_value);
305: --
306: hr_utility.set_location(l_proc, 10);

Line 312: update ben_bnft_prvdd_ldgr_f t

308: --
309: -- Update the specified datetrack row setting the effective
310: -- end date to the specified new effective end date.
311: --
312: update ben_bnft_prvdd_ldgr_f t
313: set t.effective_end_date = p_new_effective_end_date,
314: t.object_version_number = l_object_version_number
315: where t.bnft_prvdd_ldgr_id = p_base_key_value
316: and p_effective_date

Line 409: from ben_bnft_prvdd_ldgr_f

405: ann_prvdd_val,
406: ann_rld_up_val,
407: ann_used_val,
408: ann_cash_recd_val
409: from ben_bnft_prvdd_ldgr_f
410: where bnft_prvdd_ldgr_id = p_bnft_prvdd_ldgr_id
411: and p_effective_date
412: between effective_start_date and effective_end_date
413: for update nowait;

Line 468: p_base_table_name => 'ben_bnft_prvdd_ldgr_f',

464: --
465: dt_api.validate_dt_mode
466: (p_effective_date => p_effective_date,
467: p_datetrack_mode => p_datetrack_mode,
468: p_base_table_name => 'ben_bnft_prvdd_ldgr_f',
469: p_base_key_column => 'bnft_prvdd_ldgr_id',
470: p_base_key_value => p_bnft_prvdd_ldgr_id,
471: p_parent_table_name1 => 'ben_acty_base_rt_f',
472: p_parent_key_column1 => 'acty_base_rt_id',

Line 511: hr_utility.set_message_token('TABLE_NAME', 'ben_bnft_prvdd_ldgr_f');

507: -- The object is locked therefore we need to supply a meaningful
508: -- error message.
509: --
510: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
511: hr_utility.set_message_token('TABLE_NAME', 'ben_bnft_prvdd_ldgr_f');
512: hr_utility.raise_error;
513: When l_object_invalid then
514: --
515: -- The object doesn't exist or is invalid

Line 518: hr_utility.set_message_token('TABLE_NAME', 'ben_bnft_prvdd_ldgr_f');

514: --
515: -- The object doesn't exist or is invalid
516: --
517: hr_utility.set_message(801, 'HR_7155_OBJECT_INVALID');
518: hr_utility.set_message_token('TABLE_NAME', 'ben_bnft_prvdd_ldgr_f');
519: hr_utility.raise_error;
520: End lck;
521: --
522: -- ----------------------------------------------------------------------------