DBA Data[Home] [Help]

APPS.PQH_GIN_INS dependencies on PQH_GIN_INS

Line 1: Package Body pqh_gin_ins as

1: Package Body pqh_gin_ins as
2: /* $Header: pqginrhi.pkb 115.7 2004/03/15 03:05 svorugan noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_gin_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: pqh_gin_ins.g_global_index_id_i := p_global_index_id;

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

Line 228: pqh_gin_ins.dt_insert_dml

224: --
225: Begin
226: hr_utility.set_location('Entering:'||l_proc, 5);
227: --
228: pqh_gin_ins.dt_insert_dml
229: (p_rec => p_rec
230: ,p_effective_date => p_effective_date
231: ,p_datetrack_mode => p_datetrack_mode
232: ,p_validation_start_date => p_validation_start_date

Line 292: pqh_gin_ins.g_global_index_id_i;

288: Cursor C_Sel2 is
289: Select null
290: from pqh_fr_global_indices_f
291: where global_index_id =
292: pqh_gin_ins.g_global_index_id_i;
293: --
294: l_proc varchar2(72) := g_package||'pre_insert';
295: l_exists varchar2(1);
296: --

Line 300: If (pqh_gin_ins.g_global_index_id_i is not null) Then

296: --
297: Begin
298: hr_utility.set_location('Entering:'||l_proc, 5);
299: --
300: If (pqh_gin_ins.g_global_index_id_i is not null) Then
301: --
302: -- Verify registered primary key values not already in use
303: --
304: Open C_Sel2;

Line 320: pqh_gin_ins.g_global_index_id_i;

316: --
317: -- Use registered key values and clear globals
318: --
319: p_rec.global_index_id :=
320: pqh_gin_ins.g_global_index_id_i;
321: pqh_gin_ins.g_global_index_id_i := null;
322: Else
323: --
324: -- No registerd key values, so select the next sequence number

Line 321: pqh_gin_ins.g_global_index_id_i := null;

317: -- Use registered key values and clear globals
318: --
319: p_rec.global_index_id :=
320: pqh_gin_ins.g_global_index_id_i;
321: pqh_gin_ins.g_global_index_id_i := null;
322: Else
323: --
324: -- No registerd key values, so select the next sequence number
325: --

Line 518: pqh_gin_ins.ins_lck

514: hr_utility.set_location('Entering:'||l_proc, 5);
515: --
516: -- Call the lock operation
517: --
518: pqh_gin_ins.ins_lck
519: (p_effective_date => p_effective_date
520: ,p_datetrack_mode => l_datetrack_mode
521: ,p_rec => p_rec
522: ,p_validation_start_date => l_validation_start_date

Line 541: pqh_gin_ins.pre_insert

537: hr_multi_message.end_validation_set;
538: --
539: -- Call the supporting pre-insert operation
540: --
541: pqh_gin_ins.pre_insert
542: (p_rec => p_rec
543: ,p_effective_date => p_effective_date
544: ,p_datetrack_mode => l_datetrack_mode
545: ,p_validation_start_date => l_validation_start_date

Line 551: pqh_gin_ins.insert_dml

547: );
548: --
549: -- Insert the row
550: --
551: pqh_gin_ins.insert_dml
552: (p_rec => p_rec
553: ,p_effective_date => p_effective_date
554: ,p_datetrack_mode => l_datetrack_mode
555: ,p_validation_start_date => l_validation_start_date

Line 561: pqh_gin_ins.post_insert

557: );
558: --
559: -- Call the supporting post-insert operation
560: --
561: pqh_gin_ins.post_insert
562: (p_rec => p_rec
563: ,p_effective_date => p_effective_date
564: ,p_datetrack_mode => l_datetrack_mode
565: ,p_validation_start_date => l_validation_start_date

Line 620: pqh_gin_ins.ins

616: -- Having converted the arguments into the pqh_gin_rec
617: -- plsql record structure we call the corresponding record
618: -- business process.
619: --
620: pqh_gin_ins.ins
621: (p_effective_date
622: ,l_rec
623: );
624: --

Line 636: end pqh_gin_ins;

632: --
633: hr_utility.set_location(' Leaving:'||l_proc, 10);
634: End ins;
635: --
636: end pqh_gin_ins;