DBA Data[Home] [Help]

APPS.OTA_LPE_INS dependencies on OTA_LPE_INS

Line 1: Package Body ota_lpe_ins as

1: Package Body ota_lpe_ins as
2: /* $Header: otlperhi.pkb 120.7 2005/12/14 15:18 asud noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' ota_lpe_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: ota_lpe_ins.g_lp_enrollment_id_i := p_lp_enrollment_id;

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

Line 255: ota_lpe_ins.g_lp_enrollment_id_i;

251: Cursor C_Sel2 is
252: Select null
253: from ota_lp_enrollments
254: where lp_enrollment_id =
255: ota_lpe_ins.g_lp_enrollment_id_i;
256: --
257: l_proc varchar2(72) := g_package||'pre_insert';
258: l_exists varchar2(1);
259: --

Line 263: If (ota_lpe_ins.g_lp_enrollment_id_i is not null) Then

259: --
260: Begin
261: hr_utility.set_location('Entering:'||l_proc, 5);
262: --
263: If (ota_lpe_ins.g_lp_enrollment_id_i is not null) Then
264: --
265: -- Verify registered primary key values not already in use
266: --
267: Open C_Sel2;

Line 283: ota_lpe_ins.g_lp_enrollment_id_i;

279: --
280: -- Use registered key values and clear globals
281: --
282: p_rec.lp_enrollment_id :=
283: ota_lpe_ins.g_lp_enrollment_id_i;
284: ota_lpe_ins.g_lp_enrollment_id_i := null;
285: Else
286: --
287: -- No registerd key values, so select the next sequence number

Line 284: ota_lpe_ins.g_lp_enrollment_id_i := null;

280: -- Use registered key values and clear globals
281: --
282: p_rec.lp_enrollment_id :=
283: ota_lpe_ins.g_lp_enrollment_id_i;
284: ota_lpe_ins.g_lp_enrollment_id_i := null;
285: Else
286: --
287: -- No registerd key values, so select the next sequence number
288: --

Line 475: ota_lpe_ins.pre_insert(p_rec);

471: hr_multi_message.end_validation_set;
472: --
473: -- Call the supporting pre-insert operation
474: --
475: ota_lpe_ins.pre_insert(p_rec);
476: --
477: -- Insert the row
478: --
479: ota_lpe_ins.insert_dml(p_rec);

Line 479: ota_lpe_ins.insert_dml(p_rec);

475: ota_lpe_ins.pre_insert(p_rec);
476: --
477: -- Insert the row
478: --
479: ota_lpe_ins.insert_dml(p_rec);
480: --
481: -- Call the supporting post-insert operation
482: --
483: ota_lpe_ins.post_insert

Line 483: ota_lpe_ins.post_insert

479: ota_lpe_ins.insert_dml(p_rec);
480: --
481: -- Call the supporting post-insert operation
482: --
483: ota_lpe_ins.post_insert
484: (p_effective_date
485: ,p_rec
486: );
487: --

Line 607: ota_lpe_ins.ins

603: --
604: -- Having converted the arguments into the ota_lpe_rec
605: -- plsql record structure we call the corresponding record business process.
606: --
607: ota_lpe_ins.ins
608: (p_effective_date
609: ,l_rec
610: );
611: --

Line 621: end ota_lpe_ins;

617: --
618: hr_utility.set_location(' Leaving:'||l_proc, 10);
619: End ins;
620: --
621: end ota_lpe_ins;