DBA Data[Home] [Help]

APPS.BEN_PCX_SHD dependencies on BEN_PL_BNF_CTFN_F

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

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

110: pcx_attribute27,
111: pcx_attribute28,
112: pcx_attribute29,
113: pcx_attribute30
114: from ben_pl_bnf_ctfn_f
115: where pl_bnf_ctfn_id = p_pl_bnf_ctfn_id
116: and p_effective_date
117: between effective_start_date and effective_end_date;
118: --

Line 187: from ben_pl_bnf_ctfn_f t

183: l_parent_key_value1 number;
184: --
185: Cursor C_Sel1 Is
186: select t.pl_id
187: from ben_pl_bnf_ctfn_f t
188: where t.pl_bnf_ctfn_id = p_base_key_value
189: and p_effective_date
190: between t.effective_start_date and t.effective_end_date;
191: --

Line 209: p_base_table_name => 'ben_pl_bnf_ctfn_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_bnf_ctfn_f',
210: p_base_key_column => 'pl_bnf_ctfn_id',
211: p_base_key_value => p_base_key_value,
212: p_parent_table_name1 => 'ben_pl_f',
213: p_parent_key_column1 => 'pl_id',

Line 243: p_base_table_name => 'ben_pl_bnf_ctfn_f',

239: -- Call the corresponding datetrack api
240: --
241: dt_api.find_dt_upd_modes
242: (p_effective_date => p_effective_date,
243: p_base_table_name => 'ben_pl_bnf_ctfn_f',
244: p_base_key_column => 'pl_bnf_ctfn_id',
245: p_base_key_value => p_base_key_value,
246: p_correction => p_correction,
247: p_update => p_update,

Line 276: (p_base_table_name => 'ben_pl_bnf_ctfn_f',

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

Line 286: update ben_pl_bnf_ctfn_f t

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

Line 369: from ben_pl_bnf_ctfn_f

365: pcx_attribute27,
366: pcx_attribute28,
367: pcx_attribute29,
368: pcx_attribute30
369: from ben_pl_bnf_ctfn_f
370: where pl_bnf_ctfn_id = p_pl_bnf_ctfn_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_bnf_ctfn_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_bnf_ctfn_f',
429: p_base_key_column => 'pl_bnf_ctfn_id',
430: p_base_key_value => p_pl_bnf_ctfn_id,
431: p_parent_table_name1 => 'ben_pl_f',
432: p_parent_key_column1 => 'pl_id',

Line 465: fnd_message.set_token('TABLE_NAME', 'ben_pl_bnf_ctfn_f');

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

Line 472: fnd_message.set_token('TABLE_NAME', 'ben_pl_bnf_ctfn_f');

468: --
469: -- The object doesn't exist or is invalid
470: --
471: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
472: fnd_message.set_token('TABLE_NAME', 'ben_pl_bnf_ctfn_f');
473: fnd_message.raise_error;
474: End lck;
475: --
476: -- ----------------------------------------------------------------------------