DBA Data[Home] [Help]

APPS.PQH_BCE_INS dependencies on HR_UTILITY

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

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

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

86: p_rec.object_version_number
87: );
88: --
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: pqh_bce_shd.constraint_error

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

148: --
149: Cursor C_Sel1 is select pqh_bdgt_cmmtmnt_elmnts_s.nextval from sys.dual;
150: --
151: Begin
152: hr_utility.set_location('Entering:'||l_proc, 5);
153: --
154: --
155: -- Select the next sequence number
156: --

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

157: Open C_Sel1;
158: Fetch C_Sel1 Into p_rec.bdgt_cmmtmnt_elmnt_id;
159: Close C_Sel1;
160: --
161: hr_utility.set_location(' Leaving:'||l_proc, 10);
162: End pre_insert;
163: --
164: -- ----------------------------------------------------------------------------
165: -- |-----------------------------< post_insert >------------------------------|

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

198: --
199: l_proc varchar2(72) := g_package||'post_insert';
200: --
201: Begin
202: hr_utility.set_location('Entering:'||l_proc, 5);
203: --
204: --
205: -- Start of API User Hook for post_insert.
206: --

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

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

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

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

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

295: l_rec pqh_bce_shd.g_rec_type;
296: l_proc varchar2(72) := g_package||'ins';
297: --
298: Begin
299: hr_utility.set_location('Entering:'||l_proc, 5);
300: --
301: -- Call conversion function to turn arguments into the
302: -- p_rec structure.
303: --

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

329: --
330: p_bdgt_cmmtmnt_elmnt_id := l_rec.bdgt_cmmtmnt_elmnt_id;
331: p_object_version_number := l_rec.object_version_number;
332: --
333: hr_utility.set_location(' Leaving:'||l_proc, 10);
334: End ins;
335: --
336: end pqh_bce_ins;