DBA Data[Home] [Help]

APPS.BEN_CTP_SHD dependencies on BEN_PTIP_F

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

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

169: ctp_attribute28,
170: ctp_attribute29,
171: ctp_attribute30,
172: object_version_number
173: from ben_ptip_f
174: where ptip_id = p_ptip_id
175: and p_effective_date
176: between effective_start_date and effective_end_date;
177: --

Line 254: from ben_ptip_f t

250: t.pl_typ_id,
251: t.cmbn_ptip_id,
252: t.cmbn_ptip_opt_id,
253: t.acrs_ptip_cvg_id
254: from ben_ptip_f t
255: where t.ptip_id = p_base_key_value
256: and p_effective_date
257: between t.effective_start_date and t.effective_end_date;
258: --

Line 280: p_base_table_name => 'ben_ptip_f',

276: -- Call the corresponding datetrack api
277: --
278: dt_api.find_dt_del_modes
279: (p_effective_date => p_effective_date,
280: p_base_table_name => 'ben_ptip_f',
281: p_base_key_column => 'ptip_id',
282: p_base_key_value => p_base_key_value,
283: p_parent_table_name1 => 'ben_pgm_f',
284: p_parent_key_column1 => 'pgm_id',

Line 326: p_base_table_name => 'ben_ptip_f',

322: -- Call the corresponding datetrack api
323: --
324: dt_api.find_dt_upd_modes
325: (p_effective_date => p_effective_date,
326: p_base_table_name => 'ben_ptip_f',
327: p_base_key_column => 'ptip_id',
328: p_base_key_value => p_base_key_value,
329: p_correction => p_correction,
330: p_update => p_update,

Line 359: (p_base_table_name => 'ben_ptip_f',

355: -- version number.
356: --
357: l_object_version_number :=
358: dt_api.get_object_version_number
359: (p_base_table_name => 'ben_ptip_f',
360: p_base_key_column => 'ptip_id',
361: p_base_key_value => p_base_key_value);
362: --
363: hr_utility.set_location(l_proc, 10);

Line 369: update ben_ptip_f t

365: --
366: -- Update the specified datetrack row setting the effective
367: -- end date to the specified new effective end date.
368: --
369: update ben_ptip_f t
370: set t.effective_end_date = p_new_effective_end_date,
371: t.object_version_number = l_object_version_number
372: where t.ptip_id = p_base_key_value
373: and p_effective_date

Line 511: from ben_ptip_f

507: ctp_attribute28,
508: ctp_attribute29,
509: ctp_attribute30,
510: object_version_number
511: from ben_ptip_f
512: where ptip_id = p_ptip_id
513: and p_effective_date
514: between effective_start_date and effective_end_date
515: for update nowait;

Line 570: p_base_table_name => 'ben_ptip_f',

566: --
567: dt_api.validate_dt_mode
568: (p_effective_date => p_effective_date,
569: p_datetrack_mode => p_datetrack_mode,
570: p_base_table_name => 'ben_ptip_f',
571: p_base_key_column => 'ptip_id',
572: p_base_key_value => p_ptip_id,
573: p_parent_table_name1 => 'ben_pgm_f',
574: p_parent_key_column1 => 'pgm_id',

Line 630: fnd_message.set_token('TABLE_NAME', 'ben_ptip_f');

626: -- The object is locked therefore we need to supply a meaningful
627: -- error message.
628: --
629: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
630: fnd_message.set_token('TABLE_NAME', 'ben_ptip_f');
631: fnd_message.raise_error;
632: When l_object_invalid then
633: --
634: -- The object doesn't exist or is invalid

Line 637: fnd_message.set_token('TABLE_NAME', 'ben_ptip_f');

633: --
634: -- The object doesn't exist or is invalid
635: --
636: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
637: fnd_message.set_token('TABLE_NAME', 'ben_ptip_f');
638: fnd_message.raise_error;
639: End lck;
640: --
641: -- ----------------------------------------------------------------------------