DBA Data[Home] [Help]

APPS.PAY_BTL_INS dependencies on HR_UTILITY

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

56: --
57: l_proc varchar2(72) := g_package||'insert_dml';
58: --
59: Begin
60: hr_utility.set_location('Entering:'||l_proc, 5);
61: p_rec.object_version_number := 1; -- Initialise the object version
62: --
63: pay_btl_shd.g_api_dml := true; -- Set the api dml status
64: --

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

302: );
303: --
304: pay_btl_shd.g_api_dml := false; -- Unset the api dml status
305: --
306: hr_utility.set_location(' Leaving:'||l_proc, 10);
307: Exception
308: When hr_api.check_integrity_violated Then
309: -- A check constraint has been violated
310: pay_btl_shd.g_api_dml := false; -- Unset the api dml status

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

370: --
371: Cursor C_Sel1 is select pay_batch_lines_s.nextval from sys.dual;
372: --
373: Begin
374: hr_utility.set_location('Entering:'||l_proc, 5);
375: --
376: --
377: -- Select the next sequence number
378: --

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

379: Open C_Sel1;
380: Fetch C_Sel1 Into p_rec.batch_line_id;
381: Close C_Sel1;
382: --
383: hr_utility.set_location(' Leaving:'||l_proc, 10);
384: End pre_insert;
385: --
386: -- ----------------------------------------------------------------------------
387: -- |-----------------------------< post_insert >------------------------------|

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

422: --
423: l_proc varchar2(72) := g_package||'post_insert';
424: --
425: Begin
426: hr_utility.set_location('Entering:'||l_proc, 5);
427: begin
428: --
429: pay_btl_rki.after_insert
430: (p_session_date

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

672: ,p_hook_type => 'AI');
673: --
674: end;
675: --
676: hr_utility.set_location(' Leaving:'||l_proc, 10);
677: End post_insert;
678: --
679: -- ----------------------------------------------------------------------------
680: -- |---------------------------------< ins >----------------------------------|

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

690: l_cost_allocation_keyflex_id pay_batch_lines.cost_allocation_keyflex_id%type;
691: l_concat_segments_out pay_batch_lines.concatenated_segments%type;
692: --
693: Begin
694: hr_utility.set_location('Entering:'||l_proc, 5);
695:
696:
697: l_segment_passed := false;
698:

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

821: (p_session_date
822: ,p_rec
823: );
824: --
825: hr_utility.set_location('Leaving:'||l_proc, 20);
826: end ins;
827: --
828: -- ----------------------------------------------------------------------------
829: -- |---------------------------------< ins >----------------------------------|

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

953: l_concat_segments_out varchar2(2000);
954: l_cost_allocation_keyflex_id number;
955: --
956: Begin
957: hr_utility.set_location('Entering:'||l_proc, 5);
958: --
959: -- Call conversion function to turn arguments into the
960: -- p_rec structure.
961: --

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

1094: --
1095: p_batch_line_id := l_rec.batch_line_id;
1096: p_object_version_number := l_rec.object_version_number;
1097: --
1098: hr_utility.set_location(' Leaving:'||l_proc, 10);
1099: End ins;
1100: --
1101: end pay_btl_ins;
1102: