DBA Data[Home] [Help]

APPS.PQH_BDT_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_budget_details

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

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

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

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

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

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

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

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

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

255: --
256: -- End of API User Hook for post_insert.
257: --
258: --
259: hr_utility.set_location(' Leaving:'||l_proc, 10);
260: End post_insert;
261: --
262: -- ----------------------------------------------------------------------------
263: -- |---------------------------------< ins >----------------------------------|

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

269: --
270: l_proc varchar2(72) := g_package||'ins';
271: --
272: Begin
273: hr_utility.set_location('Entering:'||l_proc, 5);
274: --
275: -- Call the supporting insert validate operations
276: --
277: pqh_bdt_bus.insert_validate(p_rec);

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

319: l_rec pqh_bdt_shd.g_rec_type;
320: l_proc varchar2(72) := g_package||'ins';
321: --
322: Begin
323: hr_utility.set_location('Entering:'||l_proc, 5);
324: --
325: -- Call conversion function to turn arguments into the
326: -- p_rec structure.
327: --

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

360: --
361: p_budget_detail_id := l_rec.budget_detail_id;
362: p_object_version_number := l_rec.object_version_number;
363: --
364: hr_utility.set_location(' Leaving:'||l_proc, 10);
365: End ins;
366: --
367: end pqh_bdt_ins;