DBA Data[Home] [Help]

APPS.SSP_ERN_DEL dependencies on HR_UTILITY

Line 54: hr_utility.set_location('Entering:'||l_proc, 1);

50: --
51: l_proc varchar2(72) := g_package||'delete_dml';
52: --
53: Begin
54: hr_utility.set_location('Entering:'||l_proc, 1);
55: --
56: ssp_ern_shd.g_api_dml := true; -- Set the api dml status
57: --
58: -- Delete the ssp_earnings_calculations row.

Line 65: hr_utility.set_location('Leaving :'||l_proc, 100);

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

Line 113: hr_utility.set_location('Entering:'||l_proc, 1);

109: --
110: l_proc varchar2(72) := g_package||'pre_delete';
111: --
112: Begin
113: hr_utility.set_location('Entering:'||l_proc, 1);
114: --
115: hr_utility.set_location('Leaving :'||l_proc, 100);
116: End pre_delete;
117: --

Line 115: hr_utility.set_location('Leaving :'||l_proc, 100);

111: --
112: Begin
113: hr_utility.set_location('Entering:'||l_proc, 1);
114: --
115: hr_utility.set_location('Leaving :'||l_proc, 100);
116: End pre_delete;
117: --
118: -- ----------------------------------------------------------------------------
119: -- |-----------------------------< post_delete >------------------------------|

Line 153: hr_utility.set_location('Entering:'||l_proc, 1);

149: --
150: l_proc varchar2(72) := g_package||'post_delete';
151: --
152: Begin
153: hr_utility.set_location('Entering:'||l_proc, 1);
154: --
155: hr_utility.set_location('Leaving :'||l_proc, 100);
156: End post_delete;
157: --

Line 155: hr_utility.set_location('Leaving :'||l_proc, 100);

151: --
152: Begin
153: hr_utility.set_location('Entering:'||l_proc, 1);
154: --
155: hr_utility.set_location('Leaving :'||l_proc, 100);
156: End post_delete;
157: --
158: -- ----------------------------------------------------------------------------
159: -- |---------------------------------< del >----------------------------------|

Line 170: hr_utility.set_location('Entering:'||l_proc, 1);

166: --
167: l_proc varchar2(72) := g_package||'del';
168: --
169: Begin
170: hr_utility.set_location('Entering:'||l_proc, 1);
171: --
172: -- Determine if the business process is to be validated.
173: --
174: If p_validate then

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

203: If p_validate then
204: Raise HR_Api.Validate_Enabled;
205: End If;
206: --
207: hr_utility.set_location('Leaving :'||l_proc, 100);
208: Exception
209: When HR_Api.Validate_Enabled Then
210: --
211: -- As the Validate_Enabled exception has been raised rollback to savepoint

Line 230: hr_utility.set_location('Entering:'||l_proc, 1);

226: l_rec ssp_ern_shd.g_rec_type;
227: l_proc varchar2(72) := g_package||'del';
228: --
229: Begin
230: hr_utility.set_location('Entering:'||l_proc, 1);
231: --
232: -- As the delete procedure accepts a plsql record structure we do need to
233: -- convert the arguments into the record structure. We don't need to call
234: -- the supplied conversion argument routine as we only need a few attributes.

Line 244: hr_utility.set_location('Leaving :'||l_proc, 100);

240: -- we must call the corresponding entity business process.
241: --
242: del(l_rec, p_validate);
243: --
244: hr_utility.set_location('Leaving :'||l_proc, 100);
245: End del;
246: --
247: end ssp_ern_del;