DBA Data[Home] [Help]

APPS.OTA_LPS_INS dependencies on OTA_LPS_INS

Line 1: Package Body ota_lps_ins as

1: Package Body ota_lps_ins as
2: /* $Header: otlpsrhi.pkb 120.0 2005/05/29 07:24:04 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' ota_lps_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_lps_ins.g_learning_path_id_i := p_learning_path_id;

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

Line 241: ota_lps_ins.g_learning_path_id_i;

237: Cursor C_Sel2 is
238: Select null
239: from ota_learning_paths
240: where learning_path_id =
241: ota_lps_ins.g_learning_path_id_i;
242: --
243: l_proc varchar2(72) := g_package||'pre_insert';
244: l_exists varchar2(1);
245: --

Line 249: If (ota_lps_ins.g_learning_path_id_i is not null) Then

245: --
246: Begin
247: hr_utility.set_location('Entering:'||l_proc, 5);
248: --
249: If (ota_lps_ins.g_learning_path_id_i is not null) Then
250: --
251: -- Verify registered primary key values not already in use
252: --
253: Open C_Sel2;

Line 269: ota_lps_ins.g_learning_path_id_i;

265: --
266: -- Use registered key values and clear globals
267: --
268: p_rec.learning_path_id :=
269: ota_lps_ins.g_learning_path_id_i;
270: ota_lps_ins.g_learning_path_id_i := null;
271: Else
272: --
273: -- No registerd key values, so select the next sequence number

Line 270: ota_lps_ins.g_learning_path_id_i := null;

266: -- Use registered key values and clear globals
267: --
268: p_rec.learning_path_id :=
269: ota_lps_ins.g_learning_path_id_i;
270: ota_lps_ins.g_learning_path_id_i := null;
271: Else
272: --
273: -- No registerd key values, so select the next sequence number
274: --

Line 450: ota_lps_ins.pre_insert(p_rec);

446: hr_multi_message.end_validation_set;
447: --
448: -- Call the supporting pre-insert operation
449: --
450: ota_lps_ins.pre_insert(p_rec);
451: --
452: -- Insert the row
453: --
454: ota_lps_ins.insert_dml(p_rec);

Line 454: ota_lps_ins.insert_dml(p_rec);

450: ota_lps_ins.pre_insert(p_rec);
451: --
452: -- Insert the row
453: --
454: ota_lps_ins.insert_dml(p_rec);
455: --
456: -- Call the supporting post-insert operation
457: --
458: ota_lps_ins.post_insert

Line 458: ota_lps_ins.post_insert

454: ota_lps_ins.insert_dml(p_rec);
455: --
456: -- Call the supporting post-insert operation
457: --
458: ota_lps_ins.post_insert
459: (p_effective_date
460: ,p_rec
461: );
462: --

Line 568: ota_lps_ins.ins

564: --
565: -- Having converted the arguments into the ota_lps_rec
566: -- plsql record structure we call the corresponding record business process.
567: --
568: ota_lps_ins.ins
569: (p_effective_date
570: ,l_rec
571: );
572: --

Line 582: end ota_lps_ins;

578: --
579: hr_utility.set_location(' Leaving:'||l_proc, 10);
580: End ins;
581: --
582: end ota_lps_ins;