DBA Data[Home] [Help]

APPS.BEN_OPP_SHD dependencies on BEN_OIPLIP_F

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

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

Line 105: from ben_oiplip_f

101: opp_attribute28,
102: opp_attribute29,
103: opp_attribute30,
104: object_version_number
105: from ben_oiplip_f
106: where oiplip_id = p_oiplip_id
107: and p_effective_date
108: between effective_start_date and effective_end_date;
109: --

Line 180: from ben_oiplip_f t

176: --
177: Cursor C_Sel1 Is
178: select t.oipl_id,
179: t.plip_id
180: from ben_oiplip_f t
181: where t.oiplip_id = p_base_key_value
182: and p_effective_date
183: between t.effective_start_date and t.effective_end_date;
184: --

Line 203: p_base_table_name => 'ben_oiplip_f',

199: -- Call the corresponding datetrack api
200: --
201: dt_api.find_dt_del_modes
202: (p_effective_date => p_effective_date,
203: p_base_table_name => 'ben_oiplip_f',
204: p_base_key_column => 'oiplip_id',
205: p_base_key_value => p_base_key_value,
206: p_parent_table_name1 => 'ben_oipl_f',
207: p_parent_key_column1 => 'oipl_id',

Line 240: p_base_table_name => 'ben_oiplip_f',

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

Line 273: (p_base_table_name => 'ben_oiplip_f',

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

Line 283: update ben_oiplip_f t

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

Line 362: from ben_oiplip_f

358: opp_attribute28,
359: opp_attribute29,
360: opp_attribute30,
361: object_version_number
362: from ben_oiplip_f
363: where oiplip_id = p_oiplip_id
364: and p_effective_date
365: between effective_start_date and effective_end_date
366: for update nowait;

Line 421: p_base_table_name => 'ben_oiplip_f',

417: --
418: dt_api.validate_dt_mode
419: (p_effective_date => p_effective_date,
420: p_datetrack_mode => p_datetrack_mode,
421: p_base_table_name => 'ben_oiplip_f',
422: p_base_key_column => 'oiplip_id',
423: p_base_key_value => p_oiplip_id,
424: p_parent_table_name1 => 'ben_oipl_f',
425: p_parent_key_column1 => 'oipl_id',

Line 461: fnd_message.set_token('TABLE_NAME', 'ben_oiplip_f');

457: -- The object is locked therefore we need to supply a meaningful
458: -- error message.
459: --
460: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
461: fnd_message.set_token('TABLE_NAME', 'ben_oiplip_f');
462: fnd_message.raise_error;
463: When l_object_invalid then
464: --
465: -- The object doesn't exist or is invalid

Line 468: fnd_message.set_token('TABLE_NAME', 'ben_oiplip_f');

464: --
465: -- The object doesn't exist or is invalid
466: --
467: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
468: fnd_message.set_token('TABLE_NAME', 'ben_oiplip_f');
469: fnd_message.raise_error;
470: End lck;
471: --
472: -- ----------------------------------------------------------------------------