DBA Data[Home] [Help]

APPS.PER_PDP_INS dependencies on PER_PDP_INS

Line 1: Package Body per_pdp_ins as

1: Package Body per_pdp_ins as
2: /* $Header: pepdprhi.pkb 120.0.12020000.2 2013/03/22 12:15:03 srannama ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_pdp_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: per_pdp_ins.g_period_of_placement_id_i := p_period_of_placement_id;

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

Line 301: per_pdp_ins.g_period_of_placement_id_i;

297: Cursor C_Sel2 is
298: Select null
299: from per_periods_of_placement
300: where period_of_placement_id =
301: per_pdp_ins.g_period_of_placement_id_i;
302: --
303: l_proc varchar2(72) := g_package||'pre_insert';
304: l_exists varchar2(1);
305: --

Line 309: If (per_pdp_ins.g_period_of_placement_id_i is not null) Then

305: --
306: Begin
307: hr_utility.set_location('Entering:'||l_proc, 5);
308: --
309: If (per_pdp_ins.g_period_of_placement_id_i is not null) Then
310: --
311: -- Verify registered primary key values not already in use
312: --
313: Open C_Sel2;

Line 329: per_pdp_ins.g_period_of_placement_id_i;

325: --
326: -- Use registered key values and clear globals
327: --
328: p_rec.period_of_placement_id :=
329: per_pdp_ins.g_period_of_placement_id_i;
330: per_pdp_ins.g_period_of_placement_id_i := null;
331: Else
332: --
333: -- No registerd key values, so select the next sequence number

Line 330: per_pdp_ins.g_period_of_placement_id_i := null;

326: -- Use registered key values and clear globals
327: --
328: p_rec.period_of_placement_id :=
329: per_pdp_ins.g_period_of_placement_id_i;
330: per_pdp_ins.g_period_of_placement_id_i := null;
331: Else
332: --
333: -- No registerd key values, so select the next sequence number
334: --

Line 565: per_pdp_ins.pre_insert(p_rec);

561: hr_multi_message.end_validation_set;
562: --
563: -- Call the supporting pre-insert operation
564: --
565: per_pdp_ins.pre_insert(p_rec);
566: --
567: -- Insert the row
568: --
569: per_pdp_ins.insert_dml(p_rec);

Line 569: per_pdp_ins.insert_dml(p_rec);

565: per_pdp_ins.pre_insert(p_rec);
566: --
567: -- Insert the row
568: --
569: per_pdp_ins.insert_dml(p_rec);
570: --
571: -- Call the supporting post-insert operation
572: --
573: per_pdp_ins.post_insert

Line 573: per_pdp_ins.post_insert

569: per_pdp_ins.insert_dml(p_rec);
570: --
571: -- Call the supporting post-insert operation
572: --
573: per_pdp_ins.post_insert
574: (p_effective_date
575: ,p_rec
576: );
577: --

Line 757: per_pdp_ins.ins

753: --
754: -- Having converted the arguments into the per_pdp_rec
755: -- plsql record structure we call the corresponding record business process.
756: --
757: per_pdp_ins.ins
758: (p_effective_date
759: ,l_rec
760: );
761: --

Line 778: end per_pdp_ins;

774: --
775: hr_utility.set_location(' Leaving:'||l_proc, 10);
776: End ins;
777: --
778: end per_pdp_ins;