DBA Data[Home] [Help]

APPS.BEN_PAT_SHD dependencies on BEN_POPL_ACTN_TYP_F

Line 108: from ben_popl_actn_typ_f

104: pat_attribute30,
105: object_version_number,
106: mandatory,
107: once_or_always
108: from ben_popl_actn_typ_f
109: where popl_actn_typ_id = p_popl_actn_typ_id
110: and p_effective_date
111: between effective_start_date and effective_end_date;
112: --

Line 183: from ben_popl_actn_typ_f t

179: --
180: Cursor C_Sel1 Is
181: select t.pgm_id,
182: t.pl_id
183: from ben_popl_actn_typ_f t
184: where t.popl_actn_typ_id = p_base_key_value
185: and p_effective_date
186: between t.effective_start_date and t.effective_end_date;
187: --

Line 206: p_base_table_name => 'ben_popl_actn_typ_f',

202: -- Call the corresponding datetrack api
203: --
204: dt_api.find_dt_del_modes
205: (p_effective_date => p_effective_date,
206: p_base_table_name => 'ben_popl_actn_typ_f',
207: p_base_key_column => 'popl_actn_typ_id',
208: p_base_key_value => p_base_key_value,
209: p_parent_table_name1 => 'ben_pgm_f',
210: p_parent_key_column1 => 'pgm_id',

Line 243: p_base_table_name => 'ben_popl_actn_typ_f',

239: -- Call the corresponding datetrack api
240: --
241: dt_api.find_dt_upd_modes
242: (p_effective_date => p_effective_date,
243: p_base_table_name => 'ben_popl_actn_typ_f',
244: p_base_key_column => 'popl_actn_typ_id',
245: p_base_key_value => p_base_key_value,
246: p_correction => p_correction,
247: p_update => p_update,

Line 276: (p_base_table_name => 'ben_popl_actn_typ_f',

272: -- version number.
273: --
274: l_object_version_number :=
275: dt_api.get_object_version_number
276: (p_base_table_name => 'ben_popl_actn_typ_f',
277: p_base_key_column => 'popl_actn_typ_id',
278: p_base_key_value => p_base_key_value);
279: --
280: hr_utility.set_location(l_proc, 10);

Line 286: update ben_popl_actn_typ_f t

282: --
283: -- Update the specified datetrack row setting the effective
284: -- end date to the specified new effective end date.
285: --
286: update ben_popl_actn_typ_f t
287: set t.effective_end_date = p_new_effective_end_date,
288: t.object_version_number = l_object_version_number
289: where t.popl_actn_typ_id = p_base_key_value
290: and p_effective_date

Line 368: from ben_popl_actn_typ_f

364: pat_attribute30,
365: object_version_number,
366: mandatory,
367: once_or_always
368: from ben_popl_actn_typ_f
369: where popl_actn_typ_id = p_popl_actn_typ_id
370: and p_effective_date
371: between effective_start_date and effective_end_date
372: for update nowait;

Line 427: p_base_table_name => 'ben_popl_actn_typ_f',

423: --
424: dt_api.validate_dt_mode
425: (p_effective_date => p_effective_date,
426: p_datetrack_mode => p_datetrack_mode,
427: p_base_table_name => 'ben_popl_actn_typ_f',
428: p_base_key_column => 'popl_actn_typ_id',
429: p_base_key_value => p_popl_actn_typ_id,
430: p_parent_table_name1 => 'ben_pgm_f',
431: p_parent_key_column1 => 'pgm_id',

Line 467: hr_utility.set_message_token('TABLE_NAME', 'ben_popl_actn_typ_f');

463: -- The object is locked therefore we need to supply a meaningful
464: -- error message.
465: --
466: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
467: hr_utility.set_message_token('TABLE_NAME', 'ben_popl_actn_typ_f');
468: hr_utility.raise_error;
469: When l_object_invalid then
470: --
471: -- The object doesn't exist or is invalid

Line 474: hr_utility.set_message_token('TABLE_NAME', 'ben_popl_actn_typ_f');

470: --
471: -- The object doesn't exist or is invalid
472: --
473: hr_utility.set_message(801, 'HR_7155_OBJECT_INVALID');
474: hr_utility.set_message_token('TABLE_NAME', 'ben_popl_actn_typ_f');
475: hr_utility.raise_error;
476: End lck;
477: --
478: -- ----------------------------------------------------------------------------