DBA Data[Home] [Help]

APPS.AME_ACU_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_acu_ins.g_rule_id_i := p_rule_id;
29: ame_acu_ins.g_action_id_i := p_action_id;
30: --

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

27: --
28: ame_acu_ins.g_rule_id_i := p_rule_id;
29: ame_acu_ins.g_action_id_i := p_action_id;
30: --
31: hr_utility.set_location(' Leaving:'||l_proc, 20);
32: End set_base_key_value;
33: --
34: --
35: -- ----------------------------------------------------------------------------

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

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

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

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

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

226: ,l_last_update_login
227: );
228: --
229: --
230: hr_utility.set_location(' Leaving:'||l_proc, 15);
231: --
232: Exception
233: When hr_api.check_integrity_violated Then
234: -- A check constraint has been violated

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

258: --
259: l_proc varchar2(72) := g_package||'insert_dml';
260: --
261: Begin
262: hr_utility.set_location('Entering:'||l_proc, 5);
263: --
264: ame_acu_ins.dt_insert_dml
265: (p_rec => p_rec
266: ,p_effective_date => p_effective_date

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

268: ,p_validation_start_date => p_validation_start_date
269: ,p_validation_end_date => p_validation_end_date
270: );
271: --
272: hr_utility.set_location(' Leaving:'||l_proc, 10);
273: End insert_dml;
274: --
275: -- ----------------------------------------------------------------------------
276: -- |------------------------------< pre_insert >------------------------------|

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

337: l_proc varchar2(72) := g_package||'pre_insert';
338: l_exists varchar2(1);
339: --
340: Begin
341: hr_utility.set_location('Entering:'||l_proc, 5);
342: --
343: If (ame_acu_ins.g_rule_id_i is not null or
344: ame_acu_ins.g_action_id_i is not null) Then
345: --

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

368: ame_acu_ins.g_action_id_i := null;
369: End If;
370: --
371: --
372: hr_utility.set_location(' Leaving:'||l_proc, 10);
373: End pre_insert;
374: --
375: -- ----------------------------------------------------------------------------
376: -- |----------------------------< post_insert >-------------------------------|

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

414: --
415: l_proc varchar2(72) := g_package||'post_insert';
416: --
417: Begin
418: hr_utility.set_location('Entering:'||l_proc, 5);
419: begin
420: --
421: ame_acu_rki.after_insert
422: (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 503: hr_utility.set_location('Entering:'||l_proc, 5);

499: l_validation_start_date date;
500: l_validation_end_date date;
501: --
502: Begin
503: hr_utility.set_location('Entering:'||l_proc, 5);
504: --
505: -- Validate the datetrack mode mode getting the validation start
506: -- and end dates for the specified datetrack operation.
507: --

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

541: fnd_message.set_token('STEP','40');
542: fnd_message.raise_error;
543: end;
544: --
545: hr_utility.set_location(' Leaving:'||l_proc, 10);
546: --
547: End ins_lck;
548: --
549: -- ----------------------------------------------------------------------------

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

559: l_validation_start_date date;
560: l_validation_end_date date;
561: --
562: Begin
563: hr_utility.set_location('Entering:'||l_proc, 5);
564: --
565: -- Call the lock operation
566: --
567: ame_acu_ins.ins_lck

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

617: --
618: -- Call to raise any errors on multi-message list
619: hr_multi_message.end_validation_set;
620: --
621: hr_utility.set_location('Leaving:'||l_proc,10);
622: end ins;
623: --
624: -- ----------------------------------------------------------------------------
625: -- |---------------------------------< ins >----------------------------------|

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

636: l_rec ame_acu_shd.g_rec_type;
637: l_proc varchar2(72) := g_package||'ins';
638: --
639: Begin
640: hr_utility.set_location('Entering:'||l_proc, 5);
641: --
642: -- Call conversion function to turn arguments into the
643: -- p_rec structure.
644: --

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

666: p_end_date := l_rec.end_date;
667: p_object_version_number := l_rec.object_version_number;
668: --
669: --
670: hr_utility.set_location(' Leaving:'||l_proc, 10);
671: End ins;
672: --
673: end ame_acu_ins;