DBA Data[Home] [Help]

APPS.PQH_BUDGET_DETAILS_API dependencies on HR_UTILITY

Line 44: hr_utility.set_location('Entering:'|| l_proc, 10);

40: l_object_version_number pqh_budget_details.object_version_number%TYPE;
41: --
42: begin
43: --
44: hr_utility.set_location('Entering:'|| l_proc, 10);
45: --
46: -- Issue a savepoint if operating in validation only mode
47: --
48: savepoint create_budget_detail;

Line 50: hr_utility.set_location(l_proc, 20);

46: -- Issue a savepoint if operating in validation only mode
47: --
48: savepoint create_budget_detail;
49: --
50: hr_utility.set_location(l_proc, 20);
51: --
52: -- Process Logic
53: --
54: begin

Line 153: hr_utility.set_location(l_proc, 60);

149: -- End of API User Hook for the after hook of create_budget_detail
150: --
151: end;
152: --
153: hr_utility.set_location(l_proc, 60);
154: --
155: -- When in validation only mode raise the Validate_Enabled exception
156: --
157: if p_validate then

Line 166: hr_utility.set_location(' Leaving:'||l_proc, 70);

162: --
163: p_budget_detail_id := l_budget_detail_id;
164: p_object_version_number := l_object_version_number;
165: --
166: hr_utility.set_location(' Leaving:'||l_proc, 70);
167: --
168: exception
169: --
170: when hr_api.validate_enabled then

Line 183: hr_utility.set_location(' Leaving:'||l_proc, 80);

179: -- when validation only mode is being used.)
180: --
181: p_budget_detail_id := null;
182: p_object_version_number := null;
183: hr_utility.set_location(' Leaving:'||l_proc, 80);
184: --
185: when others then
186: p_budget_detail_id := null;
187: p_object_version_number := null;

Line 230: hr_utility.set_location('Entering:'|| l_proc, 10);

226: l_object_version_number pqh_budget_details.object_version_number%TYPE;
227: --
228: begin
229: --
230: hr_utility.set_location('Entering:'|| l_proc, 10);
231: --
232: -- Issue a savepoint if operating in validation only mode
233: --
234: savepoint update_budget_detail;

Line 236: hr_utility.set_location(l_proc, 20);

232: -- Issue a savepoint if operating in validation only mode
233: --
234: savepoint update_budget_detail;
235: --
236: hr_utility.set_location(l_proc, 20);
237: --
238: -- Process Logic
239: --
240: l_object_version_number := p_object_version_number;

Line 342: hr_utility.set_location(l_proc, 60);

338: -- End of API User Hook for the after hook of update_budget_detail
339: --
340: end;
341: --
342: hr_utility.set_location(l_proc, 60);
343: --
344: -- When in validation only mode raise the Validate_Enabled exception
345: --
346: if p_validate then

Line 354: hr_utility.set_location(' Leaving:'||l_proc, 70);

350: -- Set all output arguments
351: --
352: p_object_version_number := l_object_version_number;
353: --
354: hr_utility.set_location(' Leaving:'||l_proc, 70);
355: --
356: exception
357: --
358: when hr_api.validate_enabled then

Line 369: hr_utility.set_location(' Leaving:'||l_proc, 80);

365: -- Only set output warning arguments
366: -- (Any key or derived arguments must be set to null
367: -- when validation only mode is being used.)
368: --
369: hr_utility.set_location(' Leaving:'||l_proc, 80);
370: --
371: when others then
372: p_object_version_Number := l_object_version_number;
373: --

Line 397: hr_utility.set_location('Entering:'|| l_proc, 10);

393: l_object_version_number pqh_budget_details.object_version_number%TYPE;
394: --
395: begin
396: --
397: hr_utility.set_location('Entering:'|| l_proc, 10);
398: --
399: -- Issue a savepoint if operating in validation only mode
400: --
401: savepoint delete_budget_detail;

Line 403: hr_utility.set_location(l_proc, 20);

399: -- Issue a savepoint if operating in validation only mode
400: --
401: savepoint delete_budget_detail;
402: --
403: hr_utility.set_location(l_proc, 20);
404: --
405: -- Process Logic
406: --
407: l_object_version_number := p_object_version_number;

Line 456: hr_utility.set_location(l_proc, 60);

452: -- End of API User Hook for the after hook of delete_budget_detail
453: --
454: end;
455: --
456: hr_utility.set_location(l_proc, 60);
457: --
458: -- When in validation only mode raise the Validate_Enabled exception
459: --
460: if p_validate then

Line 464: hr_utility.set_location(' Leaving:'||l_proc, 70);

460: if p_validate then
461: raise hr_api.validate_enabled;
462: end if;
463: --
464: hr_utility.set_location(' Leaving:'||l_proc, 70);
465: --
466: exception
467: --
468: when hr_api.validate_enabled then

Line 506: hr_utility.set_location('Entering:'|| l_proc, 10);

502: l_proc varchar2(72) := g_package||'lck';
503: --
504: begin
505: --
506: hr_utility.set_location('Entering:'|| l_proc, 10);
507: --
508: pqh_bdt_shd.lck
509: (
510: p_budget_detail_id => p_budget_detail_id

Line 514: hr_utility.set_location(' Leaving:'||l_proc, 70);

510: p_budget_detail_id => p_budget_detail_id
511: ,p_object_version_number => p_object_version_number
512: );
513: --
514: hr_utility.set_location(' Leaving:'||l_proc, 70);
515: --
516: end lck;
517: --
518: end pqh_budget_details_api;