DBA Data[Home] [Help]

APPS.PER_APL_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_apl_shd.g_api_dml := true; -- Set the api dml status
62: --

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

138: );
139: --
140: per_apl_shd.g_api_dml := false; -- Unset the api dml status
141: --
142: hr_utility.set_location(' Leaving:'||l_proc, 10);
143: Exception
144: When hr_api.check_integrity_violated Then
145: -- A check constraint has been violated
146: per_apl_shd.g_api_dml := false; -- Unset the api dml status

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

204: --
205: Cursor C_Sel1 is select per_applications_s.nextval from sys.dual;
206: --
207: Begin
208: hr_utility.set_location('Entering:'||l_proc, 5);
209: --
210: --
211: -- Select the next sequence number
212: --

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

213: Open C_Sel1;
214: Fetch C_Sel1 Into p_rec.application_id;
215: Close C_Sel1;
216: --
217: hr_utility.set_location(' Leaving:'||l_proc, 10);
218: End pre_insert;
219: --
220: -- ----------------------------------------------------------------------------
221: -- |-----------------------------< post_insert >------------------------------|

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

254: --
255: l_proc varchar2(72) := g_package||'post_insert';
256: --
257: Begin
258: hr_utility.set_location('Entering:'||l_proc, 5);
259: --
260: -- Start of API User Hook for post_insert.
261: begin
262: per_apl_rki.after_insert

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

305: );
306: end;
307: -- End of API User Hook for post_insert.
308: --
309: hr_utility.set_location(' Leaving:'||l_proc, 10);
310: End post_insert;
311: --
312: -- ----------------------------------------------------------------------------
313: -- |---------------------------------< ins >----------------------------------|

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

322: --
323: l_proc varchar2(72) := g_package||'ins';
324: --
325: Begin
326: hr_utility.set_location('Entering:'||l_proc, 5);
327: --
328: -- Determine if the business process is to be validated.
329: --
330: If p_validate then

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

366: If p_validate then
367: Raise HR_Api.Validate_Enabled;
368: End If;
369: --
370: hr_utility.set_location(' Leaving:'||l_proc, 10);
371: Exception
372: When HR_Api.Validate_Enabled Then
373: --
374: -- As the Validate_Enabled exception has been raised

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

425: l_rec per_apl_shd.g_rec_type;
426: l_proc varchar2(72) := g_package||'ins';
427: --
428: Begin
429: hr_utility.set_location('Entering:'||l_proc, 5);
430: --
431: -- Call conversion function to turn arguments into the
432: -- p_rec structure.
433: --

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

482: --
483: p_application_id := l_rec.application_id;
484: p_object_version_number := l_rec.object_version_number;
485: --
486: hr_utility.set_location(' Leaving:'||l_proc, 10);
487: End ins;
488: --
489: end per_apl_ins;