DBA Data[Home] [Help]

APPS.PQH_TCT_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: --
56: -- Insert the row into: pqh_transaction_categories

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

102: p_rec.master_table_route_id
103: );
104: --
105: --
106: hr_utility.set_location(' Leaving:'||l_proc, 10);
107: Exception
108: When hr_api.check_integrity_violated Then
109: -- A check constraint has been violated
110: pqh_tct_shd.constraint_error

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

164: --
165: Cursor C_Sel1 is select pqh_transaction_categories_s.nextval from sys.dual;
166: --
167: Begin
168: hr_utility.set_location('Entering:'||l_proc, 5);
169: --
170: --
171: -- Select the next sequence number
172: --

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

173: Open C_Sel1;
174: Fetch C_Sel1 Into p_rec.transaction_category_id;
175: Close C_Sel1;
176: --
177: hr_utility.set_location(' Leaving:'||l_proc, 10);
178: End pre_insert;
179: --
180: -- ----------------------------------------------------------------------------
181: -- |-----------------------------< post_insert >------------------------------|

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

214: --
215: l_proc varchar2(72) := g_package||'post_insert';
216: --
217: Begin
218: hr_utility.set_location('Entering:'||l_proc, 5);
219: --
220: --
221: -- Start of API User Hook for post_insert.
222: --

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

260: --
261: -- End of API User Hook for post_insert.
262: --
263: --
264: hr_utility.set_location(' Leaving:'||l_proc, 10);
265: End post_insert;
266: --
267: -- ----------------------------------------------------------------------------
268: -- |---------------------------------< ins >----------------------------------|

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

275: --
276: l_proc varchar2(72) := g_package||'ins';
277: --
278: Begin
279: hr_utility.set_location('Entering:'||l_proc, 5);
280: --
281: -- Call the supporting insert validate operations
282: --
283: pqh_tct_bus.insert_validate(p_rec

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

329: l_rec pqh_tct_shd.g_rec_type;
330: l_proc varchar2(72) := g_package||'ins';
331: --
332: Begin
333: hr_utility.set_location('Entering:'||l_proc, 5);
334: --
335: -- Call conversion function to turn arguments into the
336: -- p_rec structure.
337: --

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

372: --
373: p_transaction_category_id := l_rec.transaction_category_id;
374: p_object_version_number := l_rec.object_version_number;
375: --
376: hr_utility.set_location(' Leaving:'||l_proc, 10);
377: End ins;
378: --
379: end pqh_tct_ins;