DBA Data[Home] [Help]

APPS.BEN_PEA_SHD dependencies on BEN_PRTT_ENRT_ACTN_F

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_PRTT_ENRT_ACTN_FK1') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;

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

37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'BEN_PRTT_ENRT_ACTN_FK2') Then
42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 119: from ben_prtt_enrt_actn_f

115: pea_attribute28,
116: pea_attribute29,
117: pea_attribute30,
118: object_version_number
119: from ben_prtt_enrt_actn_f
120: where prtt_enrt_actn_id = p_prtt_enrt_actn_id
121: and p_effective_date
122: between effective_start_date and effective_end_date;
123: --

Line 192: from ben_prtt_enrt_actn_f t

188: l_parent_key_value1 number;
189: --
190: Cursor C_Sel1 Is
191: select t.prtt_enrt_rslt_id
192: from ben_prtt_enrt_actn_f t
193: where t.prtt_enrt_actn_id = p_base_key_value
194: and p_effective_date
195: between t.effective_start_date and t.effective_end_date;
196: --

Line 214: p_base_table_name => 'ben_prtt_enrt_actn_f',

210: -- Call the corresponding datetrack api
211: --
212: dt_api.find_dt_del_modes
213: (p_effective_date => p_effective_date,
214: p_base_table_name => 'ben_prtt_enrt_actn_f',
215: p_base_key_column => 'prtt_enrt_actn_id',
216: p_base_key_value => p_base_key_value,
217: p_parent_table_name1 => 'ben_prtt_enrt_rslt_f',
218: p_parent_key_column1 => 'prtt_enrt_rslt_id',

Line 248: p_base_table_name => 'ben_prtt_enrt_actn_f',

244: -- Call the corresponding datetrack api
245: --
246: dt_api.find_dt_upd_modes
247: (p_effective_date => p_effective_date,
248: p_base_table_name => 'ben_prtt_enrt_actn_f',
249: p_base_key_column => 'prtt_enrt_actn_id',
250: p_base_key_value => p_base_key_value,
251: p_correction => p_correction,
252: p_update => p_update,

Line 281: (p_base_table_name => 'ben_prtt_enrt_actn_f',

277: -- version number.
278: --
279: l_object_version_number :=
280: dt_api.get_object_version_number
281: (p_base_table_name => 'ben_prtt_enrt_actn_f',
282: p_base_key_column => 'prtt_enrt_actn_id',
283: p_base_key_value => p_base_key_value);
284: --
285: hr_utility.set_location(l_proc, 10);

Line 291: update ben_prtt_enrt_actn_f t

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

Line 374: from ben_prtt_enrt_actn_f

370: pea_attribute28,
371: pea_attribute29,
372: pea_attribute30,
373: object_version_number
374: from ben_prtt_enrt_actn_f
375: where prtt_enrt_actn_id = p_prtt_enrt_actn_id
376: and p_effective_date
377: between effective_start_date and effective_end_date
378: for update nowait;

Line 433: p_base_table_name => 'ben_prtt_enrt_actn_f',

429: --
430: dt_api.validate_dt_mode
431: (p_effective_date => p_effective_date,
432: p_datetrack_mode => p_datetrack_mode,
433: p_base_table_name => 'ben_prtt_enrt_actn_f',
434: p_base_key_column => 'prtt_enrt_actn_id',
435: p_base_key_value => p_prtt_enrt_actn_id,
436: p_parent_table_name1 => 'ben_prtt_enrt_rslt_f',
437: p_parent_key_column1 => 'prtt_enrt_rslt_id',

Line 476: hr_utility.set_message_token('TABLE_NAME', 'ben_prtt_enrt_actn_f');

472: -- The object is locked therefore we need to supply a meaningful
473: -- error message.
474: --
475: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
476: hr_utility.set_message_token('TABLE_NAME', 'ben_prtt_enrt_actn_f');
477: hr_utility.raise_error;
478: When l_object_invalid then
479: --
480: -- The object doesn't exist or is invalid

Line 483: hr_utility.set_message_token('TABLE_NAME', 'ben_prtt_enrt_actn_f');

479: --
480: -- The object doesn't exist or is invalid
481: --
482: hr_utility.set_message(801, 'HR_7155_OBJECT_INVALID');
483: hr_utility.set_message_token('TABLE_NAME', 'ben_prtt_enrt_actn_f');
484: hr_utility.raise_error;
485: End lck;
486: --
487: -- ----------------------------------------------------------------------------