DBA Data[Home] [Help]

APPS.PQP_PTY_INS dependencies on PQP_PTY_INS

Line 1: Package Body pqp_pty_ins as

1: Package Body pqp_pty_ins as
2: /* $Header: pqptyrhi.pkb 120.0.12000000.1 2007/01/16 04:29:01 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqp_pty_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: pqp_pty_ins.g_pension_type_id_i := p_pension_type_id;

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

Line 442: pqp_pty_ins.dt_insert_dml

438: --
439: Begin
440: hr_utility.set_location('Entering:'||l_proc, 5);
441: --
442: pqp_pty_ins.dt_insert_dml
443: (p_rec => p_rec
444: ,p_effective_date => p_effective_date
445: ,p_datetrack_mode => p_datetrack_mode
446: ,p_validation_start_date => p_validation_start_date

Line 506: pqp_pty_ins.g_pension_type_id_i;

502: Cursor C_Sel2 is
503: Select null
504: from pqp_pension_types_f
505: where pension_type_id =
506: pqp_pty_ins.g_pension_type_id_i;
507: --
508: l_proc varchar2(72) := g_package||'pre_insert';
509: l_exists varchar2(1);
510: --

Line 514: If (pqp_pty_ins.g_pension_type_id_i is not null) Then

510: --
511: Begin
512: hr_utility.set_location('Entering:'||l_proc, 5);
513: --
514: If (pqp_pty_ins.g_pension_type_id_i is not null) Then
515: --
516: -- Verify registered primary key values not already in use
517: --
518: Open C_Sel2;

Line 534: pqp_pty_ins.g_pension_type_id_i;

530: --
531: -- Use registered key values and clear globals
532: --
533: p_rec.pension_type_id :=
534: pqp_pty_ins.g_pension_type_id_i;
535: pqp_pty_ins.g_pension_type_id_i := null;
536: Else
537: --
538: -- No registerd key values, so select the next sequence number

Line 535: pqp_pty_ins.g_pension_type_id_i := null;

531: -- Use registered key values and clear globals
532: --
533: p_rec.pension_type_id :=
534: pqp_pty_ins.g_pension_type_id_i;
535: pqp_pty_ins.g_pension_type_id_i := null;
536: Else
537: --
538: -- No registerd key values, so select the next sequence number
539: --

Line 906: pqp_pty_ins.ins_lck

902: hr_utility.set_location('Entering:'||l_proc, 5);
903: --
904: -- Call the lock operation
905: --
906: pqp_pty_ins.ins_lck
907: (p_effective_date => p_effective_date
908: ,p_datetrack_mode => l_datetrack_mode
909: ,p_rec => p_rec
910: ,p_validation_start_date => l_validation_start_date

Line 929: pqp_pty_ins.pre_insert

925: hr_multi_message.end_validation_set;
926: --
927: -- Call the supporting pre-insert operation
928: --
929: pqp_pty_ins.pre_insert
930: (p_rec => p_rec
931: ,p_effective_date => p_effective_date
932: ,p_datetrack_mode => l_datetrack_mode
933: ,p_validation_start_date => l_validation_start_date

Line 939: pqp_pty_ins.insert_dml

935: );
936: --
937: -- Insert the row
938: --
939: pqp_pty_ins.insert_dml
940: (p_rec => p_rec
941: ,p_effective_date => p_effective_date
942: ,p_datetrack_mode => l_datetrack_mode
943: ,p_validation_start_date => l_validation_start_date

Line 949: pqp_pty_ins.post_insert

945: );
946: --
947: -- Call the supporting post-insert operation
948: --
949: pqp_pty_ins.post_insert
950: (p_rec => p_rec
951: ,p_effective_date => p_effective_date
952: ,p_datetrack_mode => l_datetrack_mode
953: ,p_validation_start_date => l_validation_start_date

Line 1175: pqp_pty_ins.ins

1171: -- Having converted the arguments into the pqp_pty_rec
1172: -- plsql record structure we call the corresponding record
1173: -- business process.
1174: --
1175: pqp_pty_ins.ins
1176: (p_effective_date
1177: ,l_rec
1178: );
1179: --

Line 1192: end pqp_pty_ins;

1188: hr_utility.set_location(' Leaving:'||l_proc, 10);
1189: End ins;
1190: --
1191:
1192: end pqp_pty_ins;
1193: