DBA Data[Home] [Help]

APPS.PER_PPC_INS dependencies on HR_UTILITY

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

54: --
55: l_proc varchar2(72) := g_package||'insert_dml';
56: --
57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 5);
59: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: per_ppc_shd.g_api_dml := true; -- Set the api dml status
62: --

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

128: );
129: --
130: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
131: --
132: hr_utility.set_location(' Leaving:'||l_proc, 10);
133: Exception
134: When hr_api.check_integrity_violated Then
135: -- A check constraint has been violated
136: per_ppc_shd.g_api_dml := false; -- Unset the api dml status

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

194: --
195: Cursor C_Sel1 is select per_pay_proposal_components_s.nextval from sys.dual;
196: --
197: Begin
198: hr_utility.set_location('Entering:'||l_proc, 5);
199: --
200: --
201: -- Select the next sequence number
202: --

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

203: Open C_Sel1;
204: Fetch C_Sel1 Into p_rec.component_id;
205: Close C_Sel1;
206: --
207: hr_utility.set_location(' Leaving:'||l_proc, 10);
208: End pre_insert;
209: --
210: -- ----------------------------------------------------------------------------
211: -- |-----------------------------< post_insert >------------------------------|

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

247: --
248: l_proc varchar2(72) := g_package||'post_insert';
249: --
250: Begin
251: hr_utility.set_location('Entering:'||l_proc, 5);
252: --
253: -- Call to the user hook for post_insert.
254: --
255: begin

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

295: );
296: end;
297: -- End of API User Hook for post_insert.
298: --
299: hr_utility.set_location(' Leaving:'||l_proc, 10);
300: End post_insert;
301: --
302: -- ----------------------------------------------------------------------------
303: -- |---------------------------------< ins >----------------------------------|

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

311: --
312: l_proc varchar2(72) := g_package||'ins';
313: --
314: Begin
315: hr_utility.set_location('Entering:'||l_proc, 5);
316: --
317: -- Determine if the business process is to be validated.
318: --
319: If p_validate then

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

344: If p_validate then
345: Raise HR_Api.Validate_Enabled;
346: End If;
347: --
348: hr_utility.set_location(' Leaving:'||l_proc, 10);
349: Exception
350: When HR_Api.Validate_Enabled Then
351: --
352: -- As the Validate_Enabled exception has been raised

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

397: l_rec per_ppc_shd.g_rec_type;
398: l_proc varchar2(72) := g_package||'ins';
399: --
400: Begin
401: hr_utility.set_location('Entering:'||l_proc, 5);
402: --
403: -- Call conversion function to turn arguments into the
404: -- p_rec structure.
405: --

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

448: --
449: p_component_id := l_rec.component_id;
450: p_object_version_number := l_rec.object_version_number;
451: --
452: hr_utility.set_location(' Leaving:'||l_proc, 10);
453: End ins;
454: --
455: end per_ppc_ins;