DBA Data[Home] [Help]

APPS.PQH_BST_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_sets

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

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

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

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

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

163: Open C_Sel1;
164: Fetch C_Sel1 Into p_rec.budget_set_id;
165: Close C_Sel1;
166: --
167: hr_utility.set_location(' Leaving:'||l_proc, 10);
168: End pre_insert;
169: --
170: -- ----------------------------------------------------------------------------
171: -- |-----------------------------< post_insert >------------------------------|

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

204: --
205: l_proc varchar2(72) := g_package||'post_insert';
206: --
207: Begin
208: hr_utility.set_location('Entering:'||l_proc, 5);
209: --
210: --
211: -- Start of API User Hook for post_insert.
212: --

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

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

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

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

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

347: --
348: p_budget_set_id := l_rec.budget_set_id;
349: p_object_version_number := l_rec.object_version_number;
350: --
351: hr_utility.set_location(' Leaving:'||l_proc, 10);
352: End ins;
353: --
354: end pqh_bst_ins;