DBA Data[Home] [Help]

APPS.PER_PSH_INS dependencies on PER_PSH_INS

Line 1: Package Body per_psh_ins as

1: Package Body per_psh_ins as
2: /* $Header: pepshrhi.pkb 120.2 2006/05/08 19:35 tpapired noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_psh_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_psh_ins.g_sharing_instance_id_i := p_sharing_instance_id;

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

Line 235: per_psh_ins.g_sharing_instance_id_i;

231: Cursor C_Sel2 is
232: Select null
233: from per_scorecard_sharing
234: where sharing_instance_id =
235: per_psh_ins.g_sharing_instance_id_i;
236: --
237: l_proc varchar2(72) := g_package||'pre_insert';
238: l_exists varchar2(1);
239: --

Line 243: If (per_psh_ins.g_sharing_instance_id_i is not null) Then

239: --
240: Begin
241: hr_utility.set_location('Entering:'||l_proc, 5);
242: --
243: If (per_psh_ins.g_sharing_instance_id_i is not null) Then
244: --
245: -- Verify registered primary key values not already in use
246: --
247: Open C_Sel2;

Line 263: per_psh_ins.g_sharing_instance_id_i;

259: --
260: -- Use registered key values and clear globals
261: --
262: p_rec.sharing_instance_id :=
263: per_psh_ins.g_sharing_instance_id_i;
264: per_psh_ins.g_sharing_instance_id_i := null;
265: Else
266: --
267: -- No registerd key values, so select the next sequence number

Line 264: per_psh_ins.g_sharing_instance_id_i := null;

260: -- Use registered key values and clear globals
261: --
262: p_rec.sharing_instance_id :=
263: per_psh_ins.g_sharing_instance_id_i;
264: per_psh_ins.g_sharing_instance_id_i := null;
265: Else
266: --
267: -- No registerd key values, so select the next sequence number
268: --

Line 431: per_psh_ins.pre_insert(p_rec);

427: hr_multi_message.end_validation_set;
428: --
429: -- Call the supporting pre-insert operation
430: --
431: per_psh_ins.pre_insert(p_rec);
432: --
433: -- Insert the row
434: --
435: per_psh_ins.insert_dml(p_rec);

Line 435: per_psh_ins.insert_dml(p_rec);

431: per_psh_ins.pre_insert(p_rec);
432: --
433: -- Insert the row
434: --
435: per_psh_ins.insert_dml(p_rec);
436: --
437: -- Call the supporting post-insert operation
438: --
439: per_psh_ins.post_insert

Line 439: per_psh_ins.post_insert

435: per_psh_ins.insert_dml(p_rec);
436: --
437: -- Call the supporting post-insert operation
438: --
439: per_psh_ins.post_insert
440: (p_rec
441: );
442: --
443: -- Call to raise any errors on multi-message list

Line 541: per_psh_ins.ins

537: --
538: -- Having converted the arguments into the per_psh_rec
539: -- plsql record structure we call the corresponding record business process.
540: --
541: per_psh_ins.ins
542: (l_rec
543: );
544: --
545: -- As the primary key argument(s)

Line 554: end per_psh_ins;

550: --
551: hr_utility.set_location(' Leaving:'||l_proc, 10);
552: End ins;
553: --
554: end per_psh_ins;