DBA Data[Home] [Help]

APPS.HR_AHK_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: --
60: --
61: hr_ahk_shd.g_api_dml := true; -- Set the api dml status
62: --

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

86: );
87: --
88: hr_ahk_shd.g_api_dml := false; -- Unset the api dml status
89: --
90: hr_utility.set_location(' Leaving:'||l_proc, 10);
91: Exception
92: When hr_api.check_integrity_violated Then
93: -- A check constraint has been violated
94: hr_ahk_shd.g_api_dml := false; -- Unset the api dml status

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

152: --
153: Cursor C_Sel1 is select hr_api_hooks_s.nextval from sys.dual;
154: --
155: Begin
156: hr_utility.set_location('Entering:'||l_proc, 5);
157: --
158: --
159: -- Select the next sequence number
160: --

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

161: Open C_Sel1;
162: Fetch C_Sel1 Into p_rec.api_hook_id;
163: Close C_Sel1;
164: --
165: hr_utility.set_location(' Leaving:'||l_proc, 10);
166: End pre_insert;
167: --
168: -- ----------------------------------------------------------------------------
169: -- |-----------------------------< post_insert >------------------------------|

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

201: --
202: l_proc varchar2(72) := g_package||'post_insert';
203: --
204: Begin
205: hr_utility.set_location('Entering:'||l_proc, 5);
206: --
207: hr_utility.set_location(' Leaving:'||l_proc, 10);
208: End post_insert;
209: --

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

203: --
204: Begin
205: hr_utility.set_location('Entering:'||l_proc, 5);
206: --
207: hr_utility.set_location(' Leaving:'||l_proc, 10);
208: End post_insert;
209: --
210: -- ----------------------------------------------------------------------------
211: -- |---------------------------------< ins >----------------------------------|

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

218: --
219: l_proc varchar2(72) := g_package||'ins';
220: --
221: Begin
222: hr_utility.set_location('Entering:'||l_proc, 5);
223: --
224: -- Call the supporting insert validate operations
225: --
226: hr_ahk_bus.insert_validate(p_rec, p_effective_date);

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

257: l_rec hr_ahk_shd.g_rec_type;
258: l_proc varchar2(72) := g_package||'ins';
259: --
260: Begin
261: hr_utility.set_location('Entering:'||l_proc, 5);
262: --
263: -- Call conversion function to turn arguments into the
264: -- p_rec structure.
265: --

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

287: --
288: p_api_hook_id := l_rec.api_hook_id;
289: --
290: --
291: hr_utility.set_location(' Leaving:'||l_proc, 10);
292: End ins;
293: --
294: end hr_ahk_ins;