DBA Data[Home] [Help]

APPS.PQH_POSITION_TRANSACTIONS_API dependencies on HR_UTILITY

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

163: l_object_version_number pqh_position_transactions.object_version_number%TYPE;
164: --
165: begin
166: --
167: hr_utility.set_location('Entering:'|| l_proc, 10);
168: --
169: -- Issue a savepoint if operating in validation only mode
170: --
171: savepoint create_position_transaction;

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

169: -- Issue a savepoint if operating in validation only mode
170: --
171: savepoint create_position_transaction;
172: --
173: hr_utility.set_location(l_proc, 20);
174: --
175: -- Process Logic
176: --
177: begin

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

641: -- End of API User Hook for the after hook of create_position_transaction
642: --
643: end;
644: --
645: hr_utility.set_location(l_proc, 60);
646: --
647: -- When in validation only mode raise the Validate_Enabled exception
648: --
649: if p_validate then

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

654: --
655: p_position_transaction_id := l_position_transaction_id;
656: p_object_version_number := l_object_version_number;
657: --
658: hr_utility.set_location(' Leaving:'||l_proc, 70);
659: --
660: exception
661: --
662: when hr_api.validate_enabled then

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

671: -- when validation only mode is being used.)
672: --
673: p_position_transaction_id := null;
674: p_object_version_number := null;
675: hr_utility.set_location(' Leaving:'||l_proc, 80);
676: --
677: when others then
678: p_position_transaction_id := null;
679: p_object_version_number := null;

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

841: l_object_version_number pqh_position_transactions.object_version_number%TYPE;
842: --
843: begin
844: --
845: hr_utility.set_location('Entering:'|| l_proc, 10);
846: --
847: -- Issue a savepoint if operating in validation only mode
848: --
849: savepoint update_position_transaction;

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

847: -- Issue a savepoint if operating in validation only mode
848: --
849: savepoint update_position_transaction;
850: --
851: hr_utility.set_location(l_proc, 20);
852: --
853: -- Process Logic
854: --
855: l_object_version_number := p_object_version_number;

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

1322: -- End of API User Hook for the after hook of update_position_transaction
1323: --
1324: end;
1325: --
1326: hr_utility.set_location(l_proc, 60);
1327: --
1328: -- When in validation only mode raise the Validate_Enabled exception
1329: --
1330: if p_validate then

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

1334: -- Set all output arguments
1335: --
1336: p_object_version_number := l_object_version_number;
1337: --
1338: hr_utility.set_location(' Leaving:'||l_proc, 70);
1339: --
1340: exception
1341: --
1342: when hr_api.validate_enabled then

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

1349: -- Only set output warning arguments
1350: -- (Any key or derived arguments must be set to null
1351: -- when validation only mode is being used.)
1352: --
1353: hr_utility.set_location(' Leaving:'||l_proc, 80);
1354: --
1355: when others then
1356: p_object_version_number := l_object_version_number;
1357: --

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

1378: l_object_version_number pqh_position_transactions.object_version_number%TYPE;
1379: --
1380: begin
1381: --
1382: hr_utility.set_location('Entering:'|| l_proc, 10);
1383: --
1384: -- Issue a savepoint if operating in validation only mode
1385: --
1386: savepoint delete_position_transaction;

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

1384: -- Issue a savepoint if operating in validation only mode
1385: --
1386: savepoint delete_position_transaction;
1387: --
1388: hr_utility.set_location(l_proc, 20);
1389: --
1390: -- Process Logic
1391: --
1392: l_object_version_number := p_object_version_number;

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

1440: -- End of API User Hook for the after hook of delete_position_transaction
1441: --
1442: end;
1443: --
1444: hr_utility.set_location(l_proc, 60);
1445: --
1446: -- When in validation only mode raise the Validate_Enabled exception
1447: --
1448: if p_validate then

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

1448: if p_validate then
1449: raise hr_api.validate_enabled;
1450: end if;
1451: --
1452: hr_utility.set_location(' Leaving:'||l_proc, 70);
1453: --
1454: exception
1455: --
1456: when hr_api.validate_enabled then

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

1490: l_proc varchar2(72) := g_package||'lck';
1491: --
1492: begin
1493: --
1494: hr_utility.set_location('Entering:'|| l_proc, 10);
1495: --
1496: pqh_ptx_shd.lck
1497: (
1498: p_position_transaction_id => p_position_transaction_id

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

1498: p_position_transaction_id => p_position_transaction_id
1499: ,p_object_version_number => p_object_version_number
1500: );
1501: --
1502: hr_utility.set_location(' Leaving:'||l_proc, 70);
1503: --
1504: end lck;
1505: --
1506: end pqh_position_transactions_api;