DBA Data[Home] [Help]

APPS.BEN_CPO_SHD dependencies on BEN_POPL_ORG_F

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

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

113: cpo_attribute28,
114: cpo_attribute29,
115: cpo_attribute30,
116: object_version_number
117: from ben_popl_org_f
118: where popl_org_id = p_popl_org_id
119: and p_effective_date
120: between effective_start_date and effective_end_date;
121: --

Line 192: from ben_popl_org_f t

188: --
189: Cursor C_Sel1 Is
190: select t.pl_id,
191: t.pgm_id
192: from ben_popl_org_f t
193: where t.popl_org_id = p_base_key_value
194: and p_effective_date
195: between t.effective_start_date and t.effective_end_date;
196: --

Line 215: p_base_table_name => 'ben_popl_org_f',

211: -- Call the corresponding datetrack api
212: --
213: dt_api.find_dt_del_modes
214: (p_effective_date => p_effective_date,
215: p_base_table_name => 'ben_popl_org_f',
216: p_base_key_column => 'popl_org_id',
217: p_base_key_value => p_base_key_value,
218: p_parent_table_name1 => 'ben_pl_f',
219: p_parent_key_column1 => 'pl_id',

Line 252: p_base_table_name => 'ben_popl_org_f',

248: -- Call the corresponding datetrack api
249: --
250: dt_api.find_dt_upd_modes
251: (p_effective_date => p_effective_date,
252: p_base_table_name => 'ben_popl_org_f',
253: p_base_key_column => 'popl_org_id',
254: p_base_key_value => p_base_key_value,
255: p_correction => p_correction,
256: p_update => p_update,

Line 285: (p_base_table_name => 'ben_popl_org_f',

281: -- version number.
282: --
283: l_object_version_number :=
284: dt_api.get_object_version_number
285: (p_base_table_name => 'ben_popl_org_f',
286: p_base_key_column => 'popl_org_id',
287: p_base_key_value => p_base_key_value);
288: --
289: hr_utility.set_location(l_proc, 10);

Line 295: update ben_popl_org_f t

291: --
292: -- Update the specified datetrack row setting the effective
293: -- end date to the specified new effective end date.
294: --
295: update ben_popl_org_f t
296: set t.effective_end_date = p_new_effective_end_date,
297: t.object_version_number = l_object_version_number
298: where t.popl_org_id = p_base_key_value
299: and p_effective_date

Line 376: from ben_popl_org_f

372: cpo_attribute28,
373: cpo_attribute29,
374: cpo_attribute30,
375: object_version_number
376: from ben_popl_org_f
377: where popl_org_id = p_popl_org_id
378: and p_effective_date
379: between effective_start_date and effective_end_date
380: for update nowait;

Line 435: p_base_table_name => 'ben_popl_org_f',

431: --
432: dt_api.validate_dt_mode
433: (p_effective_date => p_effective_date,
434: p_datetrack_mode => p_datetrack_mode,
435: p_base_table_name => 'ben_popl_org_f',
436: p_base_key_column => 'popl_org_id',
437: p_base_key_value => p_popl_org_id,
438: p_parent_table_name1 => 'ben_pl_f',
439: p_parent_key_column1 => 'pl_id',

Line 475: hr_utility.set_message_token('TABLE_NAME', 'ben_popl_org_f');

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

Line 482: hr_utility.set_message_token('TABLE_NAME', 'ben_popl_org_f');

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