DBA Data[Home] [Help]

APPS.PQH_COPY_ENTITY_TXN_API dependencies on HR_UTILITY

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

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

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

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

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

133: -- End of API User Hook for the after hook of create_COPY_ENTITY_TXN
134: --
135: end;
136: --
137: hr_utility.set_location(l_proc, 60);
138: --
139: -- When in validation only mode raise the Validate_Enabled exception
140: --
141: if p_validate then

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

146: --
147: p_copy_entity_txn_id := l_copy_entity_txn_id;
148: p_object_version_number := l_object_version_number;
149: --
150: hr_utility.set_location(' Leaving:'||l_proc, 70);
151: --
152: exception
153: --
154: when hr_API.validate_enabled then

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

163: -- when validation only mode is being used.)
164: --
165: p_copy_entity_txn_id := null;
166: p_object_version_number := null;
167: hr_utility.set_location(' Leaving:'||l_proc, 80);
168: --
169: when others then
170: --
171: -- A validation or unexpected error has occured

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

204: l_object_version_number pqh_copy_entity_txns.object_version_number%TYPE;
205: --
206: begin
207: --
208: hr_utility.set_location('Entering:'|| l_proc, 10);
209: --
210: -- Issue a savepoint if operating in validation only mode
211: --
212: savepoint update_COPY_ENTITY_TXN;

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

210: -- Issue a savepoint if operating in validation only mode
211: --
212: savepoint update_COPY_ENTITY_TXN;
213: --
214: hr_utility.set_location(l_proc, 20);
215: --
216: -- Process Logic
217: --
218: l_object_version_number := p_object_version_number;

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

304: -- End of API User Hook for the after hook of update_COPY_ENTITY_TXN
305: --
306: end;
307: --
308: hr_utility.set_location(l_proc, 60);
309: --
310: -- When in validation only mode raise the Validate_Enabled exception
311: --
312: if p_validate then

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

316: -- Set all output arguments
317: --
318: p_object_version_number := l_object_version_number;
319: --
320: hr_utility.set_location(' Leaving:'||l_proc, 70);
321: --
322: exception
323: --
324: when hr_API.validate_enabled then

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

331: -- Only set output warning arguments
332: -- (Any key or derived arguments must be set to null
333: -- when validation only mode is being used.)
334: --
335: hr_utility.set_location(' Leaving:'||l_proc, 80);
336: --
337: when others then
338: --
339: -- A validation or unexpected error has occured

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

359: l_object_version_number pqh_copy_entity_txns.object_version_number%TYPE;
360: --
361: begin
362: --
363: hr_utility.set_location('Entering:'|| l_proc, 10);
364: --
365: -- Issue a savepoint if operating in validation only mode
366: --
367: pqh_cet_bus.chk_completed_target_err ( p_copy_entity_txn_id );

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

367: pqh_cet_bus.chk_completed_target_err ( p_copy_entity_txn_id );
368: --
369: savepoint delete_COPY_ENTITY_TXN;
370: --
371: hr_utility.set_location(l_proc, 20);
372: --
373: -- Process Logic
374: --
375: l_object_version_number := p_object_version_number;

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

423: -- End of API User Hook for the after hook of delete_COPY_ENTITY_TXN
424: --
425: end;
426: --
427: hr_utility.set_location(l_proc, 60);
428: --
429: -- When in validation only mode raise the Validate_Enabled exception
430: --
431: if p_validate then

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

431: if p_validate then
432: raise hr_API.validate_enabled;
433: end if;
434: --
435: hr_utility.set_location(' Leaving:'||l_proc, 70);
436: --
437: exception
438: --
439: when hr_API.validate_enabled then

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

473: l_proc varchar2(72) := g_package||'lck';
474: --
475: begin
476: --
477: hr_utility.set_location('Entering:'|| l_proc, 10);
478: --
479: pqh_cet_shd.lck
480: (
481: p_copy_entity_txn_id => p_copy_entity_txn_id

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

481: p_copy_entity_txn_id => p_copy_entity_txn_id
482: ,p_object_version_number => p_object_version_number
483: );
484: --
485: hr_utility.set_location(' Leaving:'||l_proc, 70);
486: --
487: end lck;
488: --
489: end PQH_COPY_ENTITY_TXN_API;