DBA Data[Home] [Help]

APPS.BEN_BMI_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: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: ben_bmi_shd.g_api_dml := true; -- Set the api dml status
62: --

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

86: );
87: --
88: ben_bmi_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: ben_bmi_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 ben_batch_commu_info_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.batch_commu_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: --
208: -- Start of API User Hook for post_insert.
209: --

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

234: --
235: -- End of API User Hook for post_insert.
236: --
237: --
238: hr_utility.set_location(' Leaving:'||l_proc, 10);
239: End post_insert;
240: --
241: -- ----------------------------------------------------------------------------
242: -- |---------------------------------< ins >----------------------------------|

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

248: --
249: l_proc varchar2(72) := g_package||'ins';
250: --
251: Begin
252: hr_utility.set_location('Entering:'||l_proc, 5);
253: --
254: -- Call the supporting insert validate operations
255: --
256: ben_bmi_bus.insert_validate(p_rec);

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

287: l_rec ben_bmi_shd.g_rec_type;
288: l_proc varchar2(72) := g_package||'ins';
289: --
290: Begin
291: hr_utility.set_location('Entering:'||l_proc, 5);
292: --
293: -- Call conversion function to turn arguments into the
294: -- p_rec structure.
295: --

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

317: --
318: p_batch_commu_id := l_rec.batch_commu_id;
319: p_object_version_number := l_rec.object_version_number;
320: --
321: hr_utility.set_location(' Leaving:'||l_proc, 10);
322: End ins;
323: --
324: end ben_bmi_ins;