DBA Data[Home] [Help]

APPS.PQH_WKS_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_worksheets

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

86: p_rec.wf_transaction_category_id
87: );
88: --
89: --
90: hr_utility.set_location(' Leaving:'||l_proc, 10);
91: Exception
92: When hr_api.check_integrity_violated Then
93: -- A check constraint has been violated
94: pqh_wks_shd.constraint_error

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

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

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

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

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

210: l_object_version_number number(9);
211:
212: --
213: Begin
214: hr_utility.set_location('Entering:'||l_proc, 5);
215: --
216: --
217: -- Start of API User Hook for post_insert.
218: --

Line 230: hr_utility.set_location('Budget Status :'||l_budgets_rec.status, 6);

226: LOOP
227: FETCH csr_budget INTO l_budgets_rec;
228: EXIT WHEN csr_budget%NOTFOUND;
229:
230: hr_utility.set_location('Budget Status :'||l_budgets_rec.status, 6);
231:
232: -- call update API of budget to update the budget status to frozen
233:
234: l_object_version_number := l_budgets_rec.object_version_number;

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

275: --
276: -- End of API User Hook for post_insert.
277: --
278: --
279: hr_utility.set_location(' Leaving:'||l_proc, 10);
280: End post_insert;
281: --
282: -- ----------------------------------------------------------------------------
283: -- |---------------------------------< ins >----------------------------------|

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

290: --
291: l_proc varchar2(72) := g_package||'ins';
292: --
293: Begin
294: hr_utility.set_location('Entering:'||l_proc, 5);
295: --
296: -- Call the supporting insert validate operations
297: --
298: pqh_wks_bus.insert_validate(p_rec

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

336: l_rec pqh_wks_shd.g_rec_type;
337: l_proc varchar2(72) := g_package||'ins';
338: --
339: Begin
340: hr_utility.set_location('Entering:'||l_proc, 5);
341: --
342: -- Call conversion function to turn arguments into the
343: -- p_rec structure.
344: --

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

371: --
372: p_worksheet_id := l_rec.worksheet_id;
373: p_object_version_number := l_rec.object_version_number;
374: --
375: hr_utility.set_location(' Leaving:'||l_proc, 10);
376: End ins;
377: --
378: end pqh_wks_ins;