DBA Data[Home] [Help]

APPS.PAY_PPE_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: --
62: -- In this particular table we don't think the object version number will
63: -- need to be altered.
64: --

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

88: );
89: --
90: --
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: --

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

156: --
157: Cursor C_Sel1 is select pay_process_events_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.process_event_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 211: hr_utility.set_location('Entering:'||l_proc, 5);

207: --
208: l_proc varchar2(72) := g_package||'post_insert';
209: --
210: Begin
211: hr_utility.set_location('Entering:'||l_proc, 5);
212: hr_utility.set_location(' Leaving:'||l_proc, 10);
213: End post_insert;
214: --
215: -- ----------------------------------------------------------------------------

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

208: l_proc varchar2(72) := g_package||'post_insert';
209: --
210: Begin
211: hr_utility.set_location('Entering:'||l_proc, 5);
212: hr_utility.set_location(' Leaving:'||l_proc, 10);
213: End post_insert;
214: --
215: -- ----------------------------------------------------------------------------
216: -- |---------------------------------< ins >----------------------------------|

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

221: --
222: l_proc varchar2(72) := g_package||'ins';
223: --
224: Begin
225: hr_utility.set_location('Entering:'||l_proc, 5);
226: --
227: -- Call the supporting insert validate operations
228: --
229: pay_ppe_bus.insert_validate

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

243: pay_ppe_ins.post_insert
244: (p_rec
245: );
246: --
247: hr_utility.set_location('Leaving:'||l_proc, 20);
248: end ins;
249: --
250: -- ----------------------------------------------------------------------------
251: -- |---------------------------------< ins >----------------------------------|

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

263: l_rec pay_ppe_shd.g_rec_type;
264: l_proc varchar2(72) := g_package||'ins';
265: --
266: Begin
267: hr_utility.set_location('Entering:'||l_proc, 5);
268: --
269: -- Call conversion function to turn arguments into the
270: -- p_rec structure.
271: --

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

292: --
293: p_process_event_id := l_rec.process_event_id;
294: p_object_version_number := l_rec.object_version_number;
295: --
296: hr_utility.set_location(' Leaving:'||l_proc, 10);
297: End ins;
298: --
299: end pay_ppe_ins;