DBA Data[Home] [Help]

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

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

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

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

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

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

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

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

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

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

307: );
308: end;
309: -- End of API User Hook for post_insert.
310: --
311: hr_utility.set_location(' Leaving:'||l_proc, 10);
312: End post_insert;
313: --
314: -- ----------------------------------------------------------------------------
315: -- |---------------------------------< 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 359: hr_utility.set_location(' Leaving:'||l_proc, 10);

355: If p_validate then
356: Raise HR_Api.Validate_Enabled;
357: End If;
358: --
359: hr_utility.set_location(' Leaving:'||l_proc, 10);
360: Exception
361: When HR_Api.Validate_Enabled Then
362: --
363: -- As the Validate_Enabled exception has been raised

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

412: l_rec per_jbr_shd.g_rec_type;
413: l_proc varchar2(72) := g_package||'ins';
414: --
415: Begin
416: hr_utility.set_location('Entering:'||l_proc, 5);
417: --
418: -- Call conversion function to turn arguments into the
419: -- p_rec structure.
420: --

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

468: --
469: p_job_requirement_id := l_rec.job_requirement_id;
470: p_object_version_number := l_rec.object_version_number;
471: --
472: hr_utility.set_location(' Leaving:'||l_proc, 10);
473: End ins;
474: --
475: end per_jbr_ins;