DBA Data[Home] [Help]

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

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

88: );
89: --
90: pay_peu_shd.g_api_dml := false; -- Unset the api dml status
91: --
92: hr_utility.set_location(' Leaving:'||l_proc, 10);
93: Exception
94: When hr_api.check_integrity_violated Then
95: -- A check constraint has been violated
96: pay_peu_shd.g_api_dml := false; -- Unset the api dml status

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

156: --
157: Cursor C_Sel1 is select pay_event_updates_s.nextval from sys.dual;
158: --
159: Begin
160: hr_utility.set_location('Entering:'||l_proc, 5);
161: --
162: --
163: -- Select the next sequence number
164: --

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

165: Open C_Sel1;
166: Fetch C_Sel1 Into p_rec.event_update_id;
167: Close C_Sel1;
168: --
169: hr_utility.set_location(' Leaving:'||l_proc, 10);
170: End pre_insert;
171: --
172: -- ----------------------------------------------------------------------------
173: -- |-----------------------------< post_insert >------------------------------|

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

208: --
209: l_proc varchar2(72) := g_package||'post_insert';
210: --
211: Begin
212: hr_utility.set_location('Entering:'||l_proc, 5);
213: begin
214: --
215: pay_peu_rki.after_insert
216: (p_effective_date => p_effective_date

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

243: ,p_hook_type => 'AI');
244: --
245: end;
246: --
247: hr_utility.set_location(' Leaving:'||l_proc, 10);
248: End post_insert;
249: --
250: -- ----------------------------------------------------------------------------
251: -- |---------------------------------< ins >----------------------------------|

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

257: --
258: l_proc varchar2(72) := g_package||'ins';
259: --
260: Begin
261: hr_utility.set_location('Entering:'||l_proc, 5);
262: --
263: -- Call the supporting insert validate operations
264: --
265: pay_peu_bus.insert_validate

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

281: (p_effective_date
282: ,p_rec
283: );
284: --
285: hr_utility.set_location('Leaving:'||l_proc, 20);
286: end ins;
287: --
288: -- ----------------------------------------------------------------------------
289: -- |---------------------------------< ins >----------------------------------|

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

304: l_rec pay_peu_shd.g_rec_type;
305: l_proc varchar2(72) := g_package||'ins';
306: --
307: Begin
308: hr_utility.set_location('Entering:'||l_proc, 5);
309: --
310: -- Call conversion function to turn arguments into the
311: -- p_rec structure.
312: --

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

336: --
337: p_event_update_id := l_rec.event_update_id;
338: p_object_version_number := l_rec.object_version_number;
339: --
340: hr_utility.set_location(' Leaving:'||l_proc, 10);
341: End ins;
342: --
343: end pay_peu_ins;