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 174: from ben_ptip_f

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

Line 255: from ben_ptip_f t

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

Line 281: p_base_table_name => 'ben_ptip_f',

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

Line 327: p_base_table_name => 'ben_ptip_f',

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

Line 360: (p_base_table_name => 'ben_ptip_f',

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

Line 370: update ben_ptip_f t

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

Line 513: from ben_ptip_f

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

Line 572: p_base_table_name => 'ben_ptip_f',

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

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

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

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

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