DBA Data[Home] [Help]

APPS.PQH_BUDGET_SETS_API dependencies on HR_UTILITY

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

37: l_object_version_number pqh_budget_sets.object_version_number%TYPE;
38: --
39: begin
40: --
41: hr_utility.set_location('Entering:'|| l_proc, 10);
42: --
43: -- Issue a savepoint if operating in validation only mode
44: --
45: savepoint create_budget_set;

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

43: -- Issue a savepoint if operating in validation only mode
44: --
45: savepoint create_budget_set;
46: --
47: hr_utility.set_location(l_proc, 20);
48: --
49: -- Process Logic
50: --
51: begin

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

137: -- End of API User Hook for the after hook of create_budget_set
138: --
139: end;
140: --
141: hr_utility.set_location(l_proc, 60);
142:
143: --
144: -- When in validation only mode raise the Validate_Enabled exception
145: --

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

151: --
152: p_budget_set_id := l_budget_set_id;
153: p_object_version_number := l_object_version_number;
154: --
155: hr_utility.set_location(' Leaving:'||l_proc, 70);
156: --
157: exception
158: --
159: when hr_api.validate_enabled then

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

168: -- when validation only mode is being used.)
169: --
170: p_budget_set_id := null;
171: p_object_version_number := null;
172: hr_utility.set_location(' Leaving:'||l_proc, 80);
173: --
174: when others then
175: p_budget_set_id := null;
176: p_object_version_number := null;

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

212: l_object_version_number pqh_budget_sets.object_version_number%TYPE;
213: --
214: begin
215: --
216: hr_utility.set_location('Entering:'|| l_proc, 10);
217: --
218: -- Issue a savepoint if operating in validation only mode
219: --
220: savepoint update_budget_set;

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

218: -- Issue a savepoint if operating in validation only mode
219: --
220: savepoint update_budget_set;
221: --
222: hr_utility.set_location(l_proc, 20);
223: --
224: -- Process Logic
225: --
226: l_object_version_number := p_object_version_number;

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

315: -- End of API User Hook for the after hook of update_budget_set
316: --
317: end;
318: --
319: hr_utility.set_location(l_proc, 60);
320: --
321: -- When in validation only mode raise the Validate_Enabled exception
322: --
323: if p_validate then

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

327: -- Set all output arguments
328: --
329: p_object_version_number := l_object_version_number;
330: --
331: hr_utility.set_location(' Leaving:'||l_proc, 70);
332: --
333: exception
334: --
335: when hr_api.validate_enabled then

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

342: -- Only set output warning arguments
343: -- (Any key or derived arguments must be set to null
344: -- when validation only mode is being used.)
345: --
346: hr_utility.set_location(' Leaving:'||l_proc, 80);
347: --
348: when others then
349: p_object_version_number := l_object_version_number;
350: --

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

371: l_object_version_number pqh_budget_sets.object_version_number%TYPE;
372: --
373: begin
374: --
375: hr_utility.set_location('Entering:'|| l_proc, 10);
376: --
377: -- Issue a savepoint if operating in validation only mode
378: --
379: savepoint delete_budget_set;

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

377: -- Issue a savepoint if operating in validation only mode
378: --
379: savepoint delete_budget_set;
380: --
381: hr_utility.set_location(l_proc, 20);
382: --
383: -- Process Logic
384: --
385: l_object_version_number := p_object_version_number;

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

433: -- End of API User Hook for the after hook of delete_budget_set
434: --
435: end;
436: --
437: hr_utility.set_location(l_proc, 60);
438: --
439: -- When in validation only mode raise the Validate_Enabled exception
440: --
441: if p_validate then

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

441: if p_validate then
442: raise hr_api.validate_enabled;
443: end if;
444: --
445: hr_utility.set_location(' Leaving:'||l_proc, 70);
446: --
447: exception
448: --
449: when hr_api.validate_enabled then

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

483: l_proc varchar2(72) := g_package||'lck';
484: --
485: begin
486: --
487: hr_utility.set_location('Entering:'|| l_proc, 10);
488: --
489: pqh_bst_shd.lck
490: (
491: p_budget_set_id => p_budget_set_id

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

491: p_budget_set_id => p_budget_set_id
492: ,p_object_version_number => p_object_version_number
493: );
494: --
495: hr_utility.set_location(' Leaving:'||l_proc, 70);
496: --
497: end lck;
498: --
499: end pqh_budget_sets_api;