DBA Data[Home] [Help]

APPS.PER_SUC_INS dependencies on HR_UTILITY

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

38: --
39: l_proc varchar2(72) := g_package||'set_base_key_value';
40: --
41: Begin
42: hr_utility.set_location('Entering:'||l_proc, 5);
43: --
44: g_succession_plan_id := p_succession_plan_id;
45: End;
46: --

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

91: --
92: l_proc varchar2(72) := g_package||'insert_dml';
93: --
94: Begin
95: hr_utility.set_location('Entering:'||l_proc, 5);
96: p_rec.object_version_number := 1; -- Initialise the object version
97: --
98: per_suc_shd.g_api_dml := true; -- Set the api dml status
99: --

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

171: );
172: --
173: per_suc_shd.g_api_dml := false; -- Unset the api dml status
174: --
175: hr_utility.set_location(' Leaving:'||l_proc, 10);
176: Exception
177: When hr_api.check_integrity_violated Then
178: -- A check constraint has been violated
179: per_suc_shd.g_api_dml := false; -- Unset the api dml status

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

237: --
238: Cursor C_Sel1 is select per_succession_planning_s.nextval from sys.dual;
239: --
240: Begin
241: hr_utility.set_location('Entering:'||l_proc, 5);
242: --
243: if( g_succession_plan_id is null ) then
244: --
245: -- Select the next sequence number

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

253: g_succession_plan_id :=null;
254:
255: end if;
256: --
257: hr_utility.set_location(' Leaving:'||l_proc, 10);
258: End pre_insert;
259: --
260: -- ----------------------------------------------------------------------------
261: -- |-----------------------------< post_insert >------------------------------|

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

294: --
295: l_proc varchar2(72) := g_package||'post_insert';
296: --
297: Begin
298: hr_utility.set_location('Entering:'||l_proc, 5);
299: --
300: -- Start of Row Handler User Hook for post_insert.
301: --
302: Begin

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

346: end;
347: --
348: -- End of Row Handler User Hook for post_insert.
349: --
350: hr_utility.set_location(' Leaving:'||l_proc, 10);
351: End post_insert;
352: --
353: -- ----------------------------------------------------------------------------
354: -- |---------------------------------< ins >----------------------------------|

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

361: --
362: l_proc varchar2(72) := g_package||'ins';
363: --
364: Begin
365: hr_utility.set_location('Entering:'||l_proc, 5);
366: --
367: -- Call the supporting insert validate operations
368: --
369: per_suc_bus.insert_validate(p_rec,p_effective_date);

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

425: l_rec per_suc_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 483: hr_utility.set_location(' Leaving:'||l_proc, 10);

479: --
480: p_succession_plan_id := l_rec.succession_plan_id;
481: p_object_version_number := l_rec.object_version_number;
482: --
483: hr_utility.set_location(' Leaving:'||l_proc, 10);
484: End ins;
485: --
486: end per_suc_ins;