DBA Data[Home] [Help]

APPS.AME_MAN_INS dependencies on HR_UTILITY

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

22: --
23: l_proc varchar2(72) := g_package||'set_base_key_value';
24: --
25: Begin
26: hr_utility.set_location('Entering:'||l_proc, 10);
27: --
28: ame_man_ins.g_attribute_id_i := p_attribute_id;
29: ame_man_ins.g_action_type_id_i := p_action_type_id;
30: --

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

27: --
28: ame_man_ins.g_attribute_id_i := p_attribute_id;
29: ame_man_ins.g_action_type_id_i := p_action_type_id;
30: --
31: hr_utility.set_location(' Leaving:'||l_proc, 20);
32: End set_base_key_value;
33: --
34: --
35: -- ----------------------------------------------------------------------------

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

113: l_current_user_id integer;
114: l_temp_count integer;
115: --
116: Begin
117: hr_utility.set_location('Entering:'||l_proc, 5);
118: --
119: -- Set the effective start and end dates to the corresponding
120: -- validation start and end dates
121: --

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

126: -- If the datetrack_mode is not INSERT then we must populate the WHO
127: -- columns with the 'old' creation values and 'new' updated values.
128: --
129: If (p_datetrack_mode <> hr_api.g_insert) then
130: hr_utility.set_location(l_proc, 10);
131: --
132: -- Get the object version number for the insert
133: --
134: p_rec.object_version_number :=

Line 221: hr_utility.set_location(' Leaving:'||l_proc, 15);

217: ,l_last_update_login
218: );
219: --
220: --
221: hr_utility.set_location(' Leaving:'||l_proc, 15);
222: --
223: Exception
224: When hr_api.check_integrity_violated Then
225: -- A check constraint has been violated

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

249: --
250: l_proc varchar2(72) := g_package||'insert_dml';
251: --
252: Begin
253: hr_utility.set_location('Entering:'||l_proc, 5);
254: --
255: ame_man_ins.dt_insert_dml
256: (p_rec => p_rec
257: ,p_effective_date => p_effective_date

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

259: ,p_validation_start_date => p_validation_start_date
260: ,p_validation_end_date => p_validation_end_date
261: );
262: --
263: hr_utility.set_location(' Leaving:'||l_proc, 10);
264: End insert_dml;
265: --
266: -- ----------------------------------------------------------------------------
267: -- |------------------------------< pre_insert >------------------------------|

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

323: l_proc varchar2(72) := g_package||'pre_insert';
324: l_exists varchar2(1);
325: --
326: Begin
327: hr_utility.set_location('Entering:'||l_proc, 5);
328: --
329: If (ame_man_ins.g_attribute_id_i is not null or
330: ame_man_ins.g_action_type_id_i is not null) Then
331: --

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

366: End If;
367: */
368: --
369: --
370: hr_utility.set_location(' Leaving:'||l_proc, 10);
371: End pre_insert;
372: --
373: -- ----------------------------------------------------------------------------
374: -- |----------------------------< post_insert >-------------------------------|

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

412: --
413: l_proc varchar2(72) := g_package||'post_insert';
414: --
415: Begin
416: hr_utility.set_location('Entering:'||l_proc, 5);
417: begin
418: --
419: ame_man_rki.after_insert
420: (p_effective_date

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

446: ,p_hook_type => 'AI');
447: --
448: end;
449: --
450: hr_utility.set_location(' Leaving:'||l_proc, 10);
451: End post_insert;
452: --
453: -- ----------------------------------------------------------------------------
454: -- |-------------------------------< ins_lck >--------------------------------|

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

506: l_validation_end_date date;
507: l_action_type_id number;
508: --
509: Begin
510: hr_utility.set_location('Entering:'||l_proc, 5);
511: --
512: -- Lock parent
513: open c_sel1;
514: fetch c_sel1 into l_action_type_id;

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

524: -- MURTHY_CHANGES
525: p_validation_start_date := sysdate;
526: p_validation_end_date := ame_utility_pkg.endOfTime;
527: --
528: hr_utility.set_location(' Leaving:'||l_proc, 10);
529: --
530: End ins_lck;
531: --
532: -- ----------------------------------------------------------------------------

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

542: l_validation_start_date date;
543: l_validation_end_date date;
544: --
545: Begin
546: hr_utility.set_location('Entering:'||l_proc, 5);
547: --
548: -- Call the lock operation
549: --
550: ame_man_ins.ins_lck

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

600: --
601: -- Call to raise any errors on multi-message list
602: hr_multi_message.end_validation_set;
603: --
604: hr_utility.set_location('Leaving:'||l_proc,10);
605: end ins;
606: --
607: -- ----------------------------------------------------------------------------
608: -- |---------------------------------< ins >----------------------------------|

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

620: l_rec ame_man_shd.g_rec_type;
621: l_proc varchar2(72) := g_package||'ins';
622: --
623: Begin
624: hr_utility.set_location('Entering:'||l_proc, 5);
625: --
626: -- Call conversion function to turn arguments into the
627: -- p_rec structure.
628: --

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

651: p_end_date := l_rec.end_date;
652: p_object_version_number := l_rec.object_version_number;
653: --
654: --
655: hr_utility.set_location(' Leaving:'||l_proc, 10);
656: End ins;
657: --
658: end ame_man_ins;