DBA Data[Home] [Help]

APPS.BEN_PTP_SHD dependencies on BEN_PL_TYP_F

Line 36: If (p_constraint_name = 'BEN_PL_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_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_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_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 51: ElsIf (p_constraint_name = 'BEN_PL_TYP_F_UK1') Then

47: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
48: fnd_message.set_token('PROCEDURE', l_proc);
49: fnd_message.set_token('STEP','15');
50: fnd_message.raise_error;
51: ElsIf (p_constraint_name = 'BEN_PL_TYP_F_UK1') Then
52: fnd_message.set_name('BEN', 'BEN_91009_NAME_NOT_UNIQUE');
53: fnd_message.raise_error;
54: Else
55: fnd_message.set_name('PAY', 'HR_7877_API_INVALID_CONSTRAINT');

Line 128: from ben_pl_typ_f

124: short_code, /*FHR*/
125: legislation_code,
126: legislation_subgroup,
127: object_version_number
128: from ben_pl_typ_f
129: where pl_typ_id = p_pl_typ_id
130: and p_effective_date
131: between effective_start_date and effective_end_date;
132: --

Line 208: p_base_table_name => 'ben_pl_typ_f',

204: -- Call the corresponding datetrack api
205: --
206: dt_api.find_dt_del_modes
207: (p_effective_date => p_effective_date,
208: p_base_table_name => 'ben_pl_typ_f',
209: p_base_key_column => 'pl_typ_id',
210: p_base_key_value => p_base_key_value,
211: p_zap => p_zap,
212: p_delete => p_delete,

Line 239: p_base_table_name => 'ben_pl_typ_f',

235: -- Call the corresponding datetrack api
236: --
237: dt_api.find_dt_upd_modes
238: (p_effective_date => p_effective_date,
239: p_base_table_name => 'ben_pl_typ_f',
240: p_base_key_column => 'pl_typ_id',
241: p_base_key_value => p_base_key_value,
242: p_correction => p_correction,
243: p_update => p_update,

Line 272: (p_base_table_name => 'ben_pl_typ_f',

268: -- version number.
269: --
270: l_object_version_number :=
271: dt_api.get_object_version_number
272: (p_base_table_name => 'ben_pl_typ_f',
273: p_base_key_column => 'pl_typ_id',
274: p_base_key_value => p_base_key_value);
275: --
276: hr_utility.set_location(l_proc, 10);

Line 282: update ben_pl_typ_f t

278: --
279: -- Update the specified datetrack row setting the effective
280: -- end date to the specified new effective end date.
281: --
282: update ben_pl_typ_f t
283: set t.effective_end_date = p_new_effective_end_date,
284: t.object_version_number = l_object_version_number
285: where t.pl_typ_id = p_base_key_value
286: and p_effective_date

Line 371: from ben_pl_typ_f

367: short_code, /*FHR*/
368: legislation_code,
369: legislation_subgroup,
370: object_version_number
371: from ben_pl_typ_f
372: where pl_typ_id = p_pl_typ_id
373: and p_effective_date
374: between effective_start_date and effective_end_date
375: for update nowait;

Line 430: p_base_table_name => 'ben_pl_typ_f',

426: --
427: dt_api.validate_dt_mode
428: (p_effective_date => p_effective_date,
429: p_datetrack_mode => p_datetrack_mode,
430: p_base_table_name => 'ben_pl_typ_f',
431: p_base_key_column => 'pl_typ_id',
432: p_base_key_value => p_pl_typ_id,
433: p_child_table_name1 => 'ben_ptip_f',
434: p_child_key_column1 => 'ptip_id',

Line 469: fnd_message.set_token('TABLE_NAME', 'ben_pl_typ_f');

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

Line 476: fnd_message.set_token('TABLE_NAME', 'ben_pl_typ_f');

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