DBA Data[Home] [Help]

APPS.BEN_PON_SHD dependencies on BEN_PL_TYP_OPT_TYP_F

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_PL_TYP_OPT_TYP_F_FK1') Then
37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: fnd_message.set_token('PROCEDURE', l_proc);
39: fnd_message.set_token('STEP','5');
40: fnd_message.raise_error;

Line 41: ElsIf (p_constraint_name = 'BEN_PL_TYP_OPT_TYP_F_PK') Then

37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: fnd_message.set_token('PROCEDURE', l_proc);
39: fnd_message.set_token('STEP','5');
40: fnd_message.raise_error;
41: ElsIf (p_constraint_name = 'BEN_PL_TYP_OPT_TYP_F_PK') Then
42: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
43: fnd_message.set_token('PROCEDURE', l_proc);
44: fnd_message.set_token('STEP','10');
45: fnd_message.raise_error;

Line 111: from ben_pl_typ_opt_typ_f

107: pon_attribute28,
108: pon_attribute29,
109: pon_attribute30,
110: object_version_number
111: from ben_pl_typ_opt_typ_f
112: where pl_typ_opt_typ_id = p_pl_typ_opt_typ_id
113: and p_effective_date
114: between effective_start_date and effective_end_date;
115: --

Line 186: from ben_pl_typ_opt_typ_f t

182: --
183: Cursor C_Sel1 Is
184: select t.opt_id,
185: t.pl_typ_id
186: from ben_pl_typ_opt_typ_f t
187: where t.pl_typ_opt_typ_id = p_base_key_value
188: and p_effective_date
189: between t.effective_start_date and t.effective_end_date;
190: --

Line 209: p_base_table_name => 'ben_pl_typ_opt_typ_f',

205: -- Call the corresponding datetrack api
206: --
207: dt_api.find_dt_del_modes
208: (p_effective_date => p_effective_date,
209: p_base_table_name => 'ben_pl_typ_opt_typ_f',
210: p_base_key_column => 'pl_typ_opt_typ_id',
211: p_base_key_value => p_base_key_value,
212: p_parent_table_name1 => 'ben_opt_f',
213: p_parent_key_column1 => 'opt_id',

Line 246: p_base_table_name => 'ben_pl_typ_opt_typ_f',

242: -- Call the corresponding datetrack api
243: --
244: dt_api.find_dt_upd_modes
245: (p_effective_date => p_effective_date,
246: p_base_table_name => 'ben_pl_typ_opt_typ_f',
247: p_base_key_column => 'pl_typ_opt_typ_id',
248: p_base_key_value => p_base_key_value,
249: p_correction => p_correction,
250: p_update => p_update,

Line 279: (p_base_table_name => 'ben_pl_typ_opt_typ_f',

275: -- version number.
276: --
277: l_object_version_number :=
278: dt_api.get_object_version_number
279: (p_base_table_name => 'ben_pl_typ_opt_typ_f',
280: p_base_key_column => 'pl_typ_opt_typ_id',
281: p_base_key_value => p_base_key_value);
282: --
283: hr_utility.set_location(l_proc, 10);

Line 289: update ben_pl_typ_opt_typ_f t

285: --
286: -- Update the specified datetrack row setting the effective
287: -- end date to the specified new effective end date.
288: --
289: update ben_pl_typ_opt_typ_f t
290: set t.effective_end_date = p_new_effective_end_date,
291: t.object_version_number = l_object_version_number
292: where t.pl_typ_opt_typ_id = p_base_key_value
293: and p_effective_date

Line 369: from ben_pl_typ_opt_typ_f

365: pon_attribute28,
366: pon_attribute29,
367: pon_attribute30,
368: object_version_number
369: from ben_pl_typ_opt_typ_f
370: where pl_typ_opt_typ_id = p_pl_typ_opt_typ_id
371: and p_effective_date
372: between effective_start_date and effective_end_date
373: for update nowait;

Line 428: p_base_table_name => 'ben_pl_typ_opt_typ_f',

424: --
425: dt_api.validate_dt_mode
426: (p_effective_date => p_effective_date,
427: p_datetrack_mode => p_datetrack_mode,
428: p_base_table_name => 'ben_pl_typ_opt_typ_f',
429: p_base_key_column => 'pl_typ_opt_typ_id',
430: p_base_key_value => p_pl_typ_opt_typ_id,
431: p_parent_table_name1 => 'ben_opt_f',
432: p_parent_key_column1 => 'opt_id',

Line 470: fnd_message.set_token('TABLE_NAME', 'ben_pl_typ_opt_typ_f');

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

Line 477: fnd_message.set_token('TABLE_NAME', 'ben_pl_typ_opt_typ_f');

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