DBA Data[Home] [Help]

APPS.BEN_OTP_SHD dependencies on BEN_OPTIP_F

Line 32: If (p_constraint_name = 'BEN_OPTIP_F_PK') Then

28: l_proc varchar2(72) := g_package||'constraint_error';
29: --
30: Begin
31: --
32: If (p_constraint_name = 'BEN_OPTIP_F_PK') Then
33: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
34: fnd_message.set_token('PROCEDURE', l_proc);
35: fnd_message.set_token('STEP','5');
36: fnd_message.raise_error;

Line 102: from ben_optip_f

98: ,otp_attribute28
99: ,otp_attribute29
100: ,otp_attribute30
101: ,object_version_number
102: from ben_optip_f
103: where optip_id = p_optip_id
104: and p_effective_date
105: between effective_start_date and effective_end_date;
106: --

Line 177: ,p_base_table_name => 'ben_optip_f'

173: -- Call the corresponding datetrack api
174: --
175: dt_api.find_dt_upd_modes
176: (p_effective_date => p_effective_date
177: ,p_base_table_name => 'ben_optip_f'
178: ,p_base_key_column => 'optip_id'
179: ,p_base_key_value => p_base_key_value
180: ,p_correction => p_correction
181: ,p_update => p_update

Line 212: from ben_optip_f t

208: select
209: t.pgm_id
210: ,t.ptip_id
211: ,t.opt_id
212: from ben_optip_f t
213: where t.optip_id = p_base_key_value
214: and p_effective_date
215: between t.effective_start_date and t.effective_end_date;
216: --

Line 237: ,p_base_table_name => 'ben_optip_f'

233: -- Call the corresponding datetrack api
234: --
235: dt_api.find_dt_del_modes
236: (p_effective_date => p_effective_date
237: ,p_base_table_name => 'ben_optip_f'
238: ,p_base_key_column => 'optip_id'
239: ,p_base_key_value => p_base_key_value
240: ,p_parent_table_name1 => 'ben_pgm_f'
241: ,p_parent_key_column1 => 'pgm_id'

Line 281: (p_base_table_name => 'ben_optip_f'

277: -- version number.
278: --
279: l_object_version_number :=
280: dt_api.get_object_version_number
281: (p_base_table_name => 'ben_optip_f'
282: ,p_base_key_column => 'optip_id'
283: ,p_base_key_value => p_base_key_value
284: );
285: --

Line 292: update ben_optip_f t

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

Line 375: from ben_optip_f

371: ,otp_attribute28
372: ,otp_attribute29
373: ,otp_attribute30
374: ,object_version_number
375: from ben_optip_f
376: where optip_id = p_optip_id
377: and p_effective_date
378: between effective_start_date and effective_end_date
379: for update nowait;

Line 438: ,p_base_table_name => 'ben_optip_f'

434: --
435: dt_api.validate_dt_mode
436: (p_effective_date => p_effective_date
437: ,p_datetrack_mode => p_datetrack_mode
438: ,p_base_table_name => 'ben_optip_f'
439: ,p_base_key_column => 'optip_id'
440: ,p_base_key_value => p_optip_id
441: ,p_parent_table_name1 => 'ben_pgm_f'
442: ,p_parent_key_column1 => 'pgm_id'

Line 482: fnd_message.set_token('TABLE_NAME', 'ben_optip_f');

478: -- The object is locked therefore we need to supply a meaningful
479: -- error message.
480: --
481: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
482: fnd_message.set_token('TABLE_NAME', 'ben_optip_f');
483: fnd_message.raise_error;
484: End lck;
485: --
486: -- ----------------------------------------------------------------------------