DBA Data[Home] [Help]

APPS.PQH_CET_INS dependencies on HR_UTILITY

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

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

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

88: p_rec.status,
89: p_rec.object_version_number
90: );
91: --
92: hr_utility.set_location(' Leaving:'||l_proc, 10);
93: Exception
94: When hr_api.check_integrity_violated Then
95: -- A check constraint has been violated
96: pqh_cet_shd.constraint_error

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

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

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

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

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

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

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

240: --
241: -- End of API User Hook for post_insert.
242: --
243: --
244: hr_utility.set_location(' Leaving:'||l_proc, 10);
245: End post_insert;
246: --
247: -- ----------------------------------------------------------------------------
248: -- |---------------------------------< ins >----------------------------------|

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

255: --
256: l_proc varchar2(72) := g_package||'ins';
257: --
258: Begin
259: hr_utility.set_location('Entering:'||l_proc, 5);
260: --
261: -- Call the supporting insert validate operations
262: --
263: pqh_cet_bus.insert_validate(p_rec

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

303: l_rec pqh_cet_shd.g_rec_type;
304: l_proc varchar2(72) := g_package||'ins';
305: --
306: Begin
307: hr_utility.set_location('Entering:'||l_proc, 5);
308: --
309: -- Call conversion function to turn arguments into the
310: -- p_rec structure.
311: --

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

340: --
341: p_copy_entity_txn_id := l_rec.copy_entity_txn_id;
342: p_object_version_number := l_rec.object_version_number;
343: --
344: hr_utility.set_location(' Leaving:'||l_proc, 10);
345: End ins;
346: --
347: end pqh_cet_ins;