DBA Data[Home] [Help]

APPS.PAY_EVP_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: --

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

84: );
85: --
86: --
87: --
88: hr_utility.set_location(' Leaving:'||l_proc, 10);
89: Exception
90: When hr_api.check_integrity_violated Then
91: -- A check constraint has been violated
92: --

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

152: --
153: Cursor C_Sel1 is select pay_event_procedures_s.nextval from sys.dual;
154: --
155: Begin
156: hr_utility.set_location('Entering:'||l_proc, 5);
157: --
158: --
159: -- Select the next sequence number
160: --

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

161: Open C_Sel1;
162: Fetch C_Sel1 Into p_rec.event_procedure_id;
163: Close C_Sel1;
164: --
165: hr_utility.set_location(' Leaving:'||l_proc, 10);
166: End pre_insert;
167: --
168: -- ----------------------------------------------------------------------------
169: -- |-----------------------------< post_insert >------------------------------|

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

203: --
204: l_proc varchar2(72) := g_package||'post_insert';
205: --
206: Begin
207: hr_utility.set_location('Entering:'||l_proc, 5);
208: begin
209: --
210: pay_evp_rki.after_insert
211: (p_event_procedure_id

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

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

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

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

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

268: pay_evp_ins.post_insert
269: (p_rec
270: );
271: --
272: hr_utility.set_location('Leaving:'||l_proc, 20);
273: end ins;
274: --
275: -- ----------------------------------------------------------------------------
276: -- |---------------------------------< ins >----------------------------------|

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

288: l_rec pay_evp_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 321: hr_utility.set_location(' Leaving:'||l_proc, 10);

317: --
318: p_event_procedure_id := l_rec.event_procedure_id;
319: p_object_version_number := l_rec.object_version_number;
320: --
321: hr_utility.set_location(' Leaving:'||l_proc, 10);
322: End ins;
323: --
324: end pay_evp_ins;