DBA Data[Home] [Help]

APPS.PER_RAA_INS dependencies on HR_UTILITY

Line 24: hr_utility.set_location('Entering:'||l_proc, 10);

20: --
21: l_proc varchar2(72) := g_package||'set_base_key_value';
22: --
23: Begin
24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: per_raa_ins.g_recruitment_activity_id_i := p_recruitment_activity_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);

Line 28: hr_utility.set_location(' Leaving:'||l_proc, 20);

24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: per_raa_ins.g_recruitment_activity_id_i := p_recruitment_activity_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: End set_base_key_value;
30: --
31: --
32: -- ----------------------------------------------------------------------------

Line 83: hr_utility.set_location('Entering:'||l_proc, 5);

79: l_proc varchar2(72) := g_package||'insert_dml';
80: l_recruiting_site_response clob;
81: --
82: Begin
83: hr_utility.set_location('Entering:'||l_proc, 5);
84: p_rec.object_version_number := 1; -- Initialise the object version
85: --
86: --
87: --

Line 193: hr_utility.set_location(l_proc, 10);

189: ) returning recruiting_site_response into l_recruiting_site_response;
190: --
191: --
192: if (p_rec.recruiting_site_response is not null) then
193: hr_utility.set_location(l_proc, 10);
194: dbms_lob.write(l_recruiting_site_response
195: ,length(p_rec.recruiting_site_response)
196: ,1
197: ,p_rec.recruiting_site_response);

Line 202: hr_utility.set_location(' Leaving:'||l_proc, 10);

198: end if;
199:
200: --
201: --
202: hr_utility.set_location(' Leaving:'||l_proc, 10);
203: Exception
204: When hr_api.check_integrity_violated Then
205: -- A check constraint has been violated
206: --

Line 277: hr_utility.set_location('Entering:'||l_proc, 5);

273: l_proc varchar2(72) := g_package||'pre_insert';
274: l_exists varchar2(1);
275: --
276: Begin
277: hr_utility.set_location('Entering:'||l_proc, 5);
278: --
279: If (per_raa_ins.g_recruitment_activity_id_i is not null) Then
280: --
281: -- Verify registered primary key values not already in use

Line 313: hr_utility.set_location(' Leaving:'||l_proc, 10);

309: Fetch C_Sel1 Into p_rec.recruitment_activity_id;
310: Close C_Sel1;
311: End If;
312: --
313: hr_utility.set_location(' Leaving:'||l_proc, 10);
314: End pre_insert;
315: --
316: -- ----------------------------------------------------------------------------
317: -- |-----------------------------< post_insert >------------------------------|

Line 355: hr_utility.set_location('Entering:'||l_proc, 5);

351: --
352: l_proc varchar2(72) := g_package||'post_insert';
353: --
354: Begin
355: hr_utility.set_location('Entering:'||l_proc, 5);
356: begin
357: --
358: per_raa_rki.after_insert
359: (p_recruitment_activity_id

Line 467: hr_utility.set_location(' Leaving:'||l_proc, 10);

463: ,p_hook_type => 'AI');
464: --
465: end;
466: --
467: hr_utility.set_location(' Leaving:'||l_proc, 10);
468: End post_insert;
469: --
470: -- ----------------------------------------------------------------------------
471: -- |---------------------------------< ins >----------------------------------|

Line 480: hr_utility.set_location('Entering:'||l_proc, 5);

476: --
477: l_proc varchar2(72) := g_package||'ins';
478: --
479: Begin
480: hr_utility.set_location('Entering:'||l_proc, 5);
481: --
482: -- Call the supporting insert validate operations
483: --
484: per_raa_bus.insert_validate

Line 508: hr_utility.set_location('Leaving:'||l_proc, 20);

504: --
505: -- Call to raise any errors on multi-message list
506: hr_multi_message.end_validation_set;
507: --
508: hr_utility.set_location('Leaving:'||l_proc, 20);
509: end ins;
510: --
511: -- ----------------------------------------------------------------------------
512: -- |---------------------------------< ins >----------------------------------|

Line 569: hr_utility.set_location('Entering:'||l_proc, 5);

565: l_rec per_raa_shd.g_rec_type;
566: l_proc varchar2(72) := g_package||'ins';
567: --
568: Begin
569: hr_utility.set_location('Entering:'||l_proc, 5);
570: --
571: -- Call conversion function to turn arguments into the
572: -- p_rec structure.
573: --

Line 626: hr_utility.set_location(l_proc, 20);

622: ,p_status
623: ,null
624: );
625: --
626: hr_utility.set_location(l_proc, 20);
627: --
628: -- Having converted the arguments into the per_raa_rec
629: -- plsql record structure we call the corresponding record business process.
630: --

Line 635: hr_utility.set_location(l_proc, 30);

631: per_raa_ins.ins
632: (l_rec
633: );
634: --
635: hr_utility.set_location(l_proc, 30);
636: --
637: -- As the primary key argument(s)
638: -- are specified as an OUT's we must set these values.
639: --

Line 643: hr_utility.set_location(' Leaving:'||l_proc, 40);

639: --
640: p_recruitment_activity_id := l_rec.recruitment_activity_id;
641: p_object_version_number := l_rec.object_version_number;
642: --
643: hr_utility.set_location(' Leaving:'||l_proc, 40);
644: End ins;
645: --
646: end per_raa_ins;