DBA Data[Home] [Help]

APPS.PAY_MGR_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: pay_mgr_shd.g_api_dml := true; -- Set the api dml status
59: --
60: -- Delete the pay_magnetic_records row.

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

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

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

114: --
115: l_proc varchar2(72) := g_package||'pre_delete';
116: --
117: Begin
118: hr_utility.set_location('Entering:'||l_proc, 5);
119: --
120: hr_utility.set_location(' Leaving:'||l_proc, 10);
121: End pre_delete;
122: --

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

116: --
117: Begin
118: hr_utility.set_location('Entering:'||l_proc, 5);
119: --
120: hr_utility.set_location(' Leaving:'||l_proc, 10);
121: End pre_delete;
122: --
123: -- ----------------------------------------------------------------------------
124: -- |-----------------------------< post_delete >------------------------------|

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

156: --
157: l_proc varchar2(72) := g_package||'post_delete';
158: --
159: Begin
160: hr_utility.set_location('Entering:'||l_proc, 5);
161: --
162: hr_utility.set_location(' Leaving:'||l_proc, 10);
163: End post_delete;
164: --

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

158: --
159: Begin
160: hr_utility.set_location('Entering:'||l_proc, 5);
161: --
162: hr_utility.set_location(' Leaving:'||l_proc, 10);
163: End post_delete;
164: --
165: -- ----------------------------------------------------------------------------
166: -- |---------------------------------< del >----------------------------------|

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

173: --
174: l_proc varchar2(72) := g_package||'del';
175: --
176: Begin
177: hr_utility.set_location('Entering:'||l_proc, 5);
178: --
179: -- Determine if the business process is to be validated.
180: --
181: If p_validate then

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

214: If p_validate then
215: Raise HR_Api.Validate_Enabled;
216: End If;
217: --
218: hr_utility.set_location(' Leaving:'||l_proc, 10);
219: Exception
220: When HR_Api.Validate_Enabled Then
221: --
222: -- As the Validate_Enabled exception has been raised

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

238: l_rec pay_mgr_shd.g_rec_type;
239: l_proc varchar2(72) := g_package||'del';
240: --
241: Begin
242: hr_utility.set_location('Entering:'||l_proc, 5);
243: --
244: -- As the delete procedure accepts a plsql record structure we do need to
245: -- convert the arguments into the record structure.
246: -- We don't need to call the supplied conversion argument routine as we

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

255: -- business process
256: --
257: del(l_rec, p_validate);
258: --
259: hr_utility.set_location(' Leaving:'||l_proc, 10);
260: End del;
261: --
262: end pay_mgr_del;