DBA Data[Home] [Help]

APPS.HR_TCN_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: --
64: -- Added the following code as a part of Zero Downtime Patching Project.

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

93: );
94: --
95: --
96: --
97: hr_utility.set_location(' Leaving:'||l_proc, 10);
98: Exception
99: When hr_api.check_integrity_violated Then
100: -- A check constraint has been violated
101: --

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

161: --
162: Cursor C_Sel1 is select hr_template_canvases_b_s.nextval from sys.dual;
163: --
164: Begin
165: hr_utility.set_location('Entering:'||l_proc, 5);
166: --
167: --
168: -- Select the next sequence number
169: --

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

170: Open C_Sel1;
171: Fetch C_Sel1 Into p_rec.template_canvas_id;
172: Close C_Sel1;
173: --
174: hr_utility.set_location(' Leaving:'||l_proc, 10);
175: End pre_insert;
176: --
177: -- ----------------------------------------------------------------------------
178: -- |-----------------------------< post_insert >------------------------------|

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

212: --
213: l_proc varchar2(72) := g_package||'post_insert';
214: --
215: Begin
216: hr_utility.set_location('Entering:'||l_proc, 5);
217: begin
218: --
219: hr_tcn_rki.after_insert
220: (p_template_canvas_id

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

236: ,p_hook_type => 'AI');
237: --
238: end;
239: --
240: hr_utility.set_location(' Leaving:'||l_proc, 10);
241: End post_insert;
242: --
243: -- ----------------------------------------------------------------------------
244: -- |---------------------------------< ins >----------------------------------|

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

249: --
250: l_proc varchar2(72) := g_package||'ins';
251: --
252: Begin
253: hr_utility.set_location('Entering:'||l_proc, 5);
254: --
255: -- Call the supporting insert validate operations
256: --
257: hr_tcn_bus.insert_validate

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

271: hr_tcn_ins.post_insert
272: (p_rec
273: );
274: --
275: hr_utility.set_location('Leaving:'||l_proc, 20);
276: end ins;
277: --
278: -- ----------------------------------------------------------------------------
279: -- |---------------------------------< ins >----------------------------------|

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

288: l_rec hr_tcn_shd.g_rec_type;
289: l_proc varchar2(72) := g_package||'ins';
290: --
291: Begin
292: hr_utility.set_location('Entering:'||l_proc, 5);
293: --
294: -- Call conversion function to turn arguments into the
295: -- p_rec structure.
296: --

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

314: --
315: p_template_canvas_id := l_rec.template_canvas_id;
316: p_object_version_number := l_rec.object_version_number;
317: --
318: hr_utility.set_location(' Leaving:'||l_proc, 10);
319: End ins;
320: --
321: end hr_tcn_ins;