DBA Data[Home] [Help]

APPS.PQH_BVR_INS dependencies on HR_UTILITY

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

51: --
52: l_proc varchar2(72) := g_package||'insert_dml';
53: --
54: Begin
55: hr_utility.set_location('Entering:'||l_proc, 5);
56: p_rec.object_version_number := 1; -- Initialise the object version
57: --
58: --
59: -- Insert the row into: pqh_budget_versions

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

93: p_rec.budget_unit3_available
94: );
95: --
96: --
97: hr_utility.set_location(' Leaving:'||l_proc, 10);
98: Exception
99: When hr_api.check_integrity_violated Then
100: -- A check constraint has been violated
101: pqh_bvr_shd.constraint_error

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

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

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

164: Open C_Sel1;
165: Fetch C_Sel1 Into p_rec.budget_version_id;
166: Close C_Sel1;
167: --
168: hr_utility.set_location(' Leaving:'||l_proc, 10);
169: End pre_insert;
170: --
171: -- ----------------------------------------------------------------------------
172: -- |-----------------------------< post_insert >------------------------------|

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

205: --
206: l_proc varchar2(72) := g_package||'post_insert';
207: --
208: Begin
209: hr_utility.set_location('Entering:'||l_proc, 5);
210: --
211: --
212: -- Start of API User Hook for post_insert.
213: --

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

245: --
246: -- End of API User Hook for post_insert.
247: --
248: --
249: hr_utility.set_location(' Leaving:'||l_proc, 10);
250: End post_insert;
251: --
252: -- ----------------------------------------------------------------------------
253: -- |---------------------------------< ins >----------------------------------|

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

260: --
261: l_proc varchar2(72) := g_package||'ins';
262: --
263: Begin
264: hr_utility.set_location('Entering:'||l_proc, 5);
265: --
266: -- Call the supporting insert validate operations
267: --
268: pqh_bvr_bus.insert_validate(p_rec

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

308: l_rec pqh_bvr_shd.g_rec_type;
309: l_proc varchar2(72) := g_package||'ins';
310: --
311: Begin
312: hr_utility.set_location('Entering:'||l_proc, 5);
313: --
314: -- Call conversion function to turn arguments into the
315: -- p_rec structure.
316: --

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

345: --
346: p_budget_version_id := l_rec.budget_version_id;
347: p_object_version_number := l_rec.object_version_number;
348: --
349: hr_utility.set_location(' Leaving:'||l_proc, 10);
350: End ins;
351: --
352: end pqh_bvr_ins;