DBA Data[Home] [Help]

APPS.BEN_CBP_SHD dependencies on BEN_CMBN_PTIP_F

Line 103: from ben_cmbn_ptip_f

99: cbp_attribute29,
100: cbp_attribute30,
101: object_version_number,
102: pgm_id
103: from ben_cmbn_ptip_f
104: where cmbn_ptip_id = p_cmbn_ptip_id
105: and p_effective_date
106: between effective_start_date and effective_end_date;
107: --

Line 176: from ben_cmbn_ptip_f t

172: l_parent_key_value1 number;
173: --
174: Cursor C_Sel1 Is
175: select t.pgm_id
176: from ben_cmbn_ptip_f t
177: where t.cmbn_ptip_id = p_base_key_value
178: and p_effective_date
179: between t.effective_start_date and t.effective_end_date;
180: --

Line 198: p_base_table_name => 'ben_cmbn_ptip_f',

194: -- Call the corresponding datetrack api
195: --
196: dt_api.find_dt_del_modes
197: (p_effective_date => p_effective_date,
198: p_base_table_name => 'ben_cmbn_ptip_f',
199: p_base_key_column => 'cmbn_ptip_id',
200: p_base_key_value => p_base_key_value,
201: p_parent_table_name1 => 'ben_pgm_f',
202: p_parent_key_column1 => 'pgm_id',

Line 232: p_base_table_name => 'ben_cmbn_ptip_f',

228: -- Call the corresponding datetrack api
229: --
230: dt_api.find_dt_upd_modes
231: (p_effective_date => p_effective_date,
232: p_base_table_name => 'ben_cmbn_ptip_f',
233: p_base_key_column => 'cmbn_ptip_id',
234: p_base_key_value => p_base_key_value,
235: p_correction => p_correction,
236: p_update => p_update,

Line 265: (p_base_table_name => 'ben_cmbn_ptip_f',

261: -- version number.
262: --
263: l_object_version_number :=
264: dt_api.get_object_version_number
265: (p_base_table_name => 'ben_cmbn_ptip_f',
266: p_base_key_column => 'cmbn_ptip_id',
267: p_base_key_value => p_base_key_value);
268: --
269: hr_utility.set_location(l_proc, 10);

Line 275: update ben_cmbn_ptip_f t

271: --
272: -- Update the specified datetrack row setting the effective
273: -- end date to the specified new effective end date.
274: --
275: update ben_cmbn_ptip_f t
276: set t.effective_end_date = p_new_effective_end_date,
277: t.object_version_number = l_object_version_number
278: where t.cmbn_ptip_id = p_base_key_value
279: and p_effective_date

Line 352: from ben_cmbn_ptip_f

348: cbp_attribute29,
349: cbp_attribute30,
350: object_version_number,
351: pgm_id
352: from ben_cmbn_ptip_f
353: where cmbn_ptip_id = p_cmbn_ptip_id
354: and p_effective_date
355: between effective_start_date and effective_end_date
356: for update nowait;

Line 411: p_base_table_name => 'ben_cmbn_ptip_f',

407: --
408: dt_api.validate_dt_mode
409: (p_effective_date => p_effective_date,
410: p_datetrack_mode => p_datetrack_mode,
411: p_base_table_name => 'ben_cmbn_ptip_f',
412: p_base_key_column => 'cmbn_ptip_id',
413: p_base_key_value => p_cmbn_ptip_id,
414: p_parent_table_name1 => 'ben_pgm_f',
415: p_parent_key_column1 => 'pgm_id',

Line 454: hr_utility.set_message_token('TABLE_NAME', 'ben_cmbn_ptip_f');

450: -- The object is locked therefore we need to supply a meaningful
451: -- error message.
452: --
453: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
454: hr_utility.set_message_token('TABLE_NAME', 'ben_cmbn_ptip_f');
455: hr_utility.raise_error;
456: When l_object_invalid then
457: --
458: -- The object doesn't exist or is invalid

Line 461: hr_utility.set_message_token('TABLE_NAME', 'ben_cmbn_ptip_f');

457: --
458: -- The object doesn't exist or is invalid
459: --
460: hr_utility.set_message(801, 'HR_7155_OBJECT_INVALID');
461: hr_utility.set_message_token('TABLE_NAME', 'ben_cmbn_ptip_f');
462: hr_utility.raise_error;
463: End lck;
464: --
465: -- ----------------------------------------------------------------------------