DBA Data[Home] [Help]

APPS.PER_ENT_INS dependencies on PER_ENT_INS

Line 1: Package Body per_ent_ins as

1: Package Body per_ent_ins as
2: /* $Header: peentrhi.pkb 120.2 2005/06/16 08:27:40 vegopala noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' per_ent_ins.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_ent_ins.'; -- Global package name
9: --
10: -- The following global variables are only to be used by
11: -- the set_base_key_value and pre_insert procedures.
12: --

Line 26: per_ent_ins.g_calendar_entry_id_i := p_calendar_entry_id;

22: --
23: Begin
24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: per_ent_ins.g_calendar_entry_id_i := p_calendar_entry_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: End set_base_key_value;
30: --

Line 200: per_ent_ins.g_calendar_entry_id_i;

196: Cursor C_Sel2 is
197: Select null
198: from per_calendar_entries
199: where calendar_entry_id =
200: per_ent_ins.g_calendar_entry_id_i;
201: --
202: l_proc varchar2(72) := g_package||'pre_insert';
203: l_exists varchar2(1);
204: --

Line 208: If (per_ent_ins.g_calendar_entry_id_i is not null) Then

204: --
205: Begin
206: hr_utility.set_location('Entering:'||l_proc, 5);
207: --
208: If (per_ent_ins.g_calendar_entry_id_i is not null) Then
209: --
210: -- Verify registered primary key values not already in use
211: --
212: Open C_Sel2;

Line 228: per_ent_ins.g_calendar_entry_id_i;

224: --
225: -- Use registered key values and clear globals
226: --
227: p_rec.calendar_entry_id :=
228: per_ent_ins.g_calendar_entry_id_i;
229: per_ent_ins.g_calendar_entry_id_i := null;
230: Else
231: --
232: -- No registerd key values, so select the next sequence number

Line 229: per_ent_ins.g_calendar_entry_id_i := null;

225: -- Use registered key values and clear globals
226: --
227: p_rec.calendar_entry_id :=
228: per_ent_ins.g_calendar_entry_id_i;
229: per_ent_ins.g_calendar_entry_id_i := null;
230: Else
231: --
232: -- No registerd key values, so select the next sequence number
233: --

Line 363: per_ent_ins.pre_insert(p_rec);

359: hr_multi_message.end_validation_set;
360: --
361: -- Call the supporting pre-insert operation
362: --
363: per_ent_ins.pre_insert(p_rec);
364: --
365: -- Insert the row
366: --
367: per_ent_ins.insert_dml(p_rec);

Line 367: per_ent_ins.insert_dml(p_rec);

363: per_ent_ins.pre_insert(p_rec);
364: --
365: -- Insert the row
366: --
367: per_ent_ins.insert_dml(p_rec);
368: --
369: -- Call the supporting post-insert operation
370: --
371: per_ent_ins.post_insert

Line 371: per_ent_ins.post_insert

367: per_ent_ins.insert_dml(p_rec);
368: --
369: -- Call the supporting post-insert operation
370: --
371: per_ent_ins.post_insert
372: (p_effective_date
373: ,p_rec
374: );
375: --

Line 441: per_ent_ins.ins

437: --
438: -- Having converted the arguments into the per_ent_rec
439: -- plsql record structure we call the corresponding record business process.
440: --
441: per_ent_ins.ins
442: (p_effective_date
443: ,l_rec
444: );
445: --

Line 455: end per_ent_ins;

451: --
452: hr_utility.set_location(' Leaving:'||l_proc, 10);
453: End ins;
454: --
455: end per_ent_ins;