DBA Data[Home] [Help]

APPS.PQH_BPR_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_periods

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

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

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

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

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

165: Open C_Sel1;
166: Fetch C_Sel1 Into p_rec.budget_period_id;
167: Close C_Sel1;
168: --
169: hr_utility.set_location(' Leaving:'||l_proc, 10);
170: End pre_insert;
171: --
172: -- ----------------------------------------------------------------------------
173: -- |-----------------------------< 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 250: hr_utility.set_location(' Leaving:'||l_proc, 10);

246: --
247: -- End of API User Hook for post_insert.
248: --
249: --
250: hr_utility.set_location(' Leaving:'||l_proc, 10);
251: End post_insert;
252: --
253: -- ----------------------------------------------------------------------------
254: -- |---------------------------------< 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_bpr_bus.insert_validate(p_rec);

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

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

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

345: --
346: p_budget_period_id := l_rec.budget_period_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_bpr_ins;