DBA Data[Home] [Help]

APPS.OTA_OFF_INS dependencies on OTA_OFF_INS

Line 1: PACKAGE BODY OTA_OFF_INS as

1: PACKAGE BODY OTA_OFF_INS as
2: /* $Header: otoffrhi.pkb 120.1.12000000.2 2007/02/06 15:25:23 vkkolla noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' ota_off_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_off_ins.g_offering_id_i := p_offering_id;

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

Line 265: ota_off_ins.g_offering_id_i;

261: Cursor C_Sel2 is
262: Select null
263: from ota_offerings
264: where offering_id =
265: ota_off_ins.g_offering_id_i;
266: --
267: l_proc varchar2(72) := g_package||'pre_insert';
268: l_exists varchar2(1);
269: --

Line 273: If (ota_off_ins.g_offering_id_i is not null) Then

269: --
270: Begin
271: hr_utility.set_location('Entering:'||l_proc, 5);
272: --
273: If (ota_off_ins.g_offering_id_i is not null) Then
274: --
275: -- Verify registered primary key values not already in use
276: --
277: Open C_Sel2;

Line 293: ota_off_ins.g_offering_id_i;

289: --
290: -- Use registered key values and clear globals
291: --
292: p_rec.offering_id :=
293: ota_off_ins.g_offering_id_i;
294: ota_off_ins.g_offering_id_i := null;
295: Else
296: --
297: -- No registerd key values, so select the next sequence number

Line 294: ota_off_ins.g_offering_id_i := null;

290: -- Use registered key values and clear globals
291: --
292: p_rec.offering_id :=
293: ota_off_ins.g_offering_id_i;
294: ota_off_ins.g_offering_id_i := null;
295: Else
296: --
297: -- No registerd key values, so select the next sequence number
298: --

Line 494: ota_off_ins.pre_insert(p_rec);

490: hr_multi_message.end_validation_set;
491: --
492: -- Call the supporting pre-insert operation
493: --
494: ota_off_ins.pre_insert(p_rec);
495: --
496: -- Insert the row
497: --
498: ota_off_ins.insert_dml(p_rec);

Line 498: ota_off_ins.insert_dml(p_rec);

494: ota_off_ins.pre_insert(p_rec);
495: --
496: -- Insert the row
497: --
498: ota_off_ins.insert_dml(p_rec);
499: --
500: -- Call the supporting post-insert operation
501: --
502: ota_off_ins.post_insert

Line 502: ota_off_ins.post_insert

498: ota_off_ins.insert_dml(p_rec);
499: --
500: -- Call the supporting post-insert operation
501: --
502: ota_off_ins.post_insert
503: (p_effective_date
504: ,p_rec
505: );
506: --

Line 638: ota_off_ins.ins

634: --
635: -- Having converted the arguments into the ota_off_rec
636: -- plsql record structure we call the corresponding record business process.
637: --
638: ota_off_ins.ins
639: (p_effective_date
640: ,l_rec
641: ,p_name
642: );

Line 653: end ota_off_ins;

649: --
650: hr_utility.set_location(' Leaving:'||l_proc, 10);
651: End ins;
652: --
653: end ota_off_ins;