DBA Data[Home] [Help]

APPS.HR_ABM_DEL dependencies on HR_UTILITY

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

52: --
53: l_proc varchar2(72) := g_package||'delete_dml';
54: --
55: Begin
56: hr_utility.set_location('Entering:'||l_proc, 5);
57: --
58: hr_abm_shd.g_api_dml := true; -- Set the api dml status
59: --
60: -- Delete the hr_api_batch_message_lines row.

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

63: where line_id = p_rec.line_id;
64: --
65: hr_abm_shd.g_api_dml := false; -- Unset the api dml status
66: --
67: hr_utility.set_location(' Leaving:'||l_proc, 10);
68: --
69: Exception
70: When hr_api.child_integrity_violated then
71: -- Child integrity has been violated

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

88: --
89: l_proc varchar2(72) := g_package||'del';
90: --
91: Begin
92: hr_utility.set_location('Entering:'||l_proc, 5);
93: --
94: -- Determine if the business process is to be validated.
95: --
96: If p_validate then

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

113: If p_validate then
114: Raise HR_Api.Validate_Enabled;
115: End If;
116: --
117: hr_utility.set_location(' Leaving:'||l_proc, 10);
118: Exception
119: When HR_Api.Validate_Enabled Then
120: --
121: -- As the Validate_Enabled exception has been raised

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

134: l_rec hr_abm_shd.g_rec_type;
135: l_proc varchar2(72) := g_package||'del';
136: --
137: Begin
138: hr_utility.set_location('Entering:'||l_proc, 5);
139: --
140: -- As the delete procedure accepts a plsql record structure we do need to
141: -- convert the arguments into the record structure.
142: -- We don't need to call the supplied conversion argument routine as we

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

150: -- business process
151: --
152: del(l_rec, p_validate);
153: --
154: hr_utility.set_location(' Leaving:'||l_proc, 10);
155: End del;
156: --
157: end hr_abm_del;