DBA Data[Home] [Help]

APPS.PQH_TRAN_CATEGORY_API dependencies on HR_UTILITY

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

43: l_object_version_number pqh_transaction_categories.object_version_number%TYPE;
44: --
45: begin
46: --
47: hr_utility.set_location('Entering:'|| l_proc, 10);
48: --
49: -- Issue a savepoint if operating in validation only mode
50: --
51: savepoint create_TRAN_CATEGORY;

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

49: -- Issue a savepoint if operating in validation only mode
50: --
51: savepoint create_TRAN_CATEGORY;
52: --
53: hr_utility.set_location(l_proc, 20);
54: --
55: -- Process Logic
56: --
57: begin

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

166: -- End of API User Hook for the after hook of create_TRAN_CATEGORY
167: --
168: end;
169: --
170: hr_utility.set_location(l_proc, 60);
171: --
172: -- When in validation only mode raise the Validate_Enabled exception
173: --
174: if p_validate then

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

179: --
180: p_transaction_category_id := l_transaction_category_id;
181: p_object_version_number := l_object_version_number;
182: --
183: hr_utility.set_location(' Leaving:'||l_proc, 70);
184: --
185: exception
186: --
187: when hr_api.validate_enabled then

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

196: -- when validation only mode is being used.)
197: --
198: p_transaction_category_id := null;
199: p_object_version_number := null;
200: hr_utility.set_location(' Leaving:'||l_proc, 80);
201: --
202: when others then
203: p_transaction_category_id := null;
204: p_object_version_number := null;

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

246: l_object_version_number pqh_transaction_categories.object_version_number%TYPE;
247: --
248: begin
249: --
250: hr_utility.set_location('Entering:'|| l_proc, 10);
251: --
252: -- Issue a savepoint if operating in validation only mode
253: --
254: savepoint update_TRAN_CATEGORY;

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

252: -- Issue a savepoint if operating in validation only mode
253: --
254: savepoint update_TRAN_CATEGORY;
255: --
256: hr_utility.set_location(l_proc, 20);
257: --
258: -- Process Logic
259: --
260: l_object_version_number := p_object_version_number;

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

370: -- End of API User Hook for the after hook of update_TRAN_CATEGORY
371: --
372: end;
373: --
374: hr_utility.set_location(l_proc, 60);
375: --
376: -- When in validation only mode raise the Validate_Enabled exception
377: --
378: if p_validate then

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

382: -- Set all output arguments
383: --
384: p_object_version_number := l_object_version_number;
385: --
386: hr_utility.set_location(' Leaving:'||l_proc, 70);
387: --
388: exception
389: --
390: when hr_api.validate_enabled then

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

397: -- Only set output warning arguments
398: -- (Any key or derived arguments must be set to null
399: -- when validation only mode is being used.)
400: --
401: hr_utility.set_location(' Leaving:'||l_proc, 80);
402: --
403: when others then
404: p_object_version_number := l_object_version_number;
405: --

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

426: l_object_version_number pqh_transaction_categories.object_version_number%TYPE;
427: --
428: begin
429: --
430: hr_utility.set_location('Entering:'|| l_proc, 10);
431: --
432: -- Issue a savepoint if operating in validation only mode
433: --
434: savepoint delete_TRAN_CATEGORY;

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

432: -- Issue a savepoint if operating in validation only mode
433: --
434: savepoint delete_TRAN_CATEGORY;
435: --
436: hr_utility.set_location(l_proc, 20);
437: --
438: -- Process Logic
439: --
440: l_object_version_number := p_object_version_number;

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

500: -- End of API User Hook for the after hook of delete_TRAN_CATEGORY
501: --
502: end;
503: --
504: hr_utility.set_location(l_proc, 60);
505: --
506: -- When in validation only mode raise the Validate_Enabled exception
507: --
508: if p_validate then

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

508: if p_validate then
509: raise hr_api.validate_enabled;
510: end if;
511: --
512: hr_utility.set_location(' Leaving:'||l_proc, 70);
513: --
514: exception
515: --
516: when hr_api.validate_enabled then

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

550: l_proc varchar2(72) := g_package||'lck';
551: --
552: begin
553: --
554: hr_utility.set_location('Entering:'|| l_proc, 10);
555: --
556: pqh_tct_shd.lck
557: (
558: p_transaction_category_id => p_transaction_category_id

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

558: p_transaction_category_id => p_transaction_category_id
559: ,p_object_version_number => p_object_version_number
560: );
561: --
562: hr_utility.set_location(' Leaving:'||l_proc, 70);
563: --
564: end lck;
565: --
566: --