DBA Data[Home] [Help]

APPS.PAY_EVG_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 90: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

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

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

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

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

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

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

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

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

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

253: --
254: l_proc varchar2(72) := g_package||'ins';
255: --
256: Begin
257: hr_utility.set_location('Entering:'||l_proc, 5);
258: --
259: -- Call the supporting insert validate operations
260: --
261: pay_evg_bus.insert_validate

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

277: (p_effective_date
278: ,p_rec
279: );
280: --
281: hr_utility.set_location('Leaving:'||l_proc, 20);
282: end ins;
283: --
284: -- ----------------------------------------------------------------------------
285: -- |---------------------------------< ins >----------------------------------|

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

299: l_rec pay_evg_shd.g_rec_type;
300: l_proc varchar2(72) := g_package||'ins';
301: --
302: Begin
303: hr_utility.set_location('Entering:'||l_proc, 5);
304: --
305: -- Call conversion function to turn arguments into the
306: -- p_rec structure.
307: --

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

330: --
331: p_event_group_id := l_rec.event_group_id;
332: p_object_version_number := l_rec.object_version_number;
333: --
334: hr_utility.set_location(' Leaving:'||l_proc, 10);
335: End ins;
336: --
337: end pay_evg_ins;