DBA Data[Home] [Help]

APPS.PAY_BTH_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_bth_shd.g_api_dml := true; -- Set the api dml status
64: --

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

104: );
105: --
106: pay_bth_shd.g_api_dml := false; -- Unset the api dml status
107: --
108: hr_utility.set_location(' Leaving:'||l_proc, 10);
109: Exception
110: When hr_api.check_integrity_violated Then
111: -- A check constraint has been violated
112: pay_bth_shd.g_api_dml := false; -- Unset the api dml status

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

172: --
173: Cursor C_Sel1 is select pay_batch_headers_s.nextval from sys.dual;
174: --
175: Begin
176: hr_utility.set_location('Entering:'||l_proc, 5);
177: --
178: --
179: -- Select the next sequence number
180: --

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

181: Open C_Sel1;
182: Fetch C_Sel1 Into p_rec.batch_id;
183: Close C_Sel1;
184: --
185: hr_utility.set_location(' Leaving:'||l_proc, 10);
186: End pre_insert;
187: --
188: -- ----------------------------------------------------------------------------
189: -- |-----------------------------< post_insert >------------------------------|

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

224: --
225: l_proc varchar2(72) := g_package||'post_insert';
226: --
227: Begin
228: hr_utility.set_location('Entering:'||l_proc, 5);
229: begin
230: --
231: pay_bth_rki.after_insert
232: (p_session_date

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

276: ,p_hook_type => 'AI');
277: --
278: end;
279: --
280: hr_utility.set_location(' Leaving:'||l_proc, 10);
281: End post_insert;
282: --
283: -- ----------------------------------------------------------------------------
284: -- |---------------------------------< ins >----------------------------------|

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

290: --
291: l_proc varchar2(72) := g_package||'ins';
292: --
293: Begin
294: hr_utility.set_location('Entering:'||l_proc, 5);
295: --
296: -- Call the supporting insert validate operations
297: --
298: pay_bth_bus.insert_validate

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

314: (p_session_date
315: ,p_rec
316: );
317: --
318: hr_utility.set_location('Leaving:'||l_proc, 20);
319: end ins;
320: --
321: -- ----------------------------------------------------------------------------
322: -- |---------------------------------< ins >----------------------------------|

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

345: l_rec pay_bth_shd.g_rec_type;
346: l_proc varchar2(72) := g_package||'ins';
347: --
348: Begin
349: hr_utility.set_location('Entering:'||l_proc, 5);
350: --
351: -- Call conversion function to turn arguments into the
352: -- p_rec structure.
353: --

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

385: --
386: p_batch_id := l_rec.batch_id;
387: p_object_version_number := l_rec.object_version_number;
388: --
389: hr_utility.set_location(' Leaving:'||l_proc, 10);
390: End ins;
391: --
392: end pay_bth_ins;