DBA Data[Home] [Help]

APPS.BEN_COPY_ENTITY_RESULTS_API dependencies on HR_UTILITY

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

413: l_datetrack_mode ben_copy_entity_results.datetrack_mode%type := 'INSERT';
414:
415: begin
416: --
417: hr_utility.set_location('Entering:'|| l_proc, 10);
418: --
419: -- Issue a savepoint if operating in validation only mode
420: --
421: savepoint create_copy_entity_results;

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

419: -- Issue a savepoint if operating in validation only mode
420: --
421: savepoint create_copy_entity_results;
422: --
423: hr_utility.set_location(l_proc, 20);
424: --
425: -- get the table_route_id if it is null
426: --
427: if p_table_route_id is null then

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

837: ,p_effective_date => trunc(p_effective_date)
838: );
839: --
840: --
841: hr_utility.set_location(l_proc, 60);
842: --
843: -- When in validation only mode raise the Validate_Enabled exception
844: --
845: if p_validate then

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

850: --
851: p_copy_entity_result_id := l_copy_entity_result_id;
852: p_object_version_number := l_object_version_number;
853: --
854: hr_utility.set_location(' Leaving:'||l_proc, 70);
855: --
856: exception
857: --
858: when hr_api.validate_enabled then

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

867: -- when validation only mode is being used.)
868: --
869: p_copy_entity_result_id := null;
870: p_object_version_number := null;
871: hr_utility.set_location(' Leaving:'||l_proc, 80);
872: --
873: when others then
874: p_copy_entity_result_id := null;
875: p_object_version_number := null;

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

1265: l_object_version_number ben_copy_entity_results.object_version_number%TYPE ;
1266: --
1267: begin
1268: --
1269: hr_utility.set_location('Entering:'|| l_proc, 10);
1270: --
1271: -- Issue a savepoint if operating in validation only mode
1272: --
1273: savepoint update_copy_entity_results;

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

1271: -- Issue a savepoint if operating in validation only mode
1272: --
1273: savepoint update_copy_entity_results;
1274: --
1275: hr_utility.set_location(l_proc, 20);
1276: --
1277: -- Process Logic
1278: --
1279: l_object_version_number := p_object_version_number;

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

1654: ,p_effective_date => trunc(p_effective_date)
1655: );
1656: --
1657: --
1658: hr_utility.set_location(l_proc, 60);
1659: --
1660: -- When in validation only mode raise the Validate_Enabled exception
1661: --
1662: if p_validate then

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

1666: -- Set all output arguments
1667: --
1668: p_object_version_number := l_object_version_number;
1669: --
1670: hr_utility.set_location(' Leaving:'||l_proc, 70);
1671: --
1672: exception
1673: --
1674: when hr_api.validate_enabled then

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

1681: -- Only set output warning arguments
1682: -- (Any key or derived arguments must be set to null
1683: -- when validation only mode is being used.)
1684: --
1685: hr_utility.set_location(' Leaving:'||l_proc, 80);
1686: --
1687: when others then
1688: p_object_version_number := l_object_version_number;
1689: --

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

1710: l_object_version_number ben_copy_entity_results.object_version_number%TYPE;
1711: --
1712: begin
1713: --
1714: hr_utility.set_location('Entering:'|| l_proc, 10);
1715: --
1716: -- Issue a savepoint if operating in validation only mode
1717: --
1718: savepoint delete_copy_entity_results;

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

1716: -- Issue a savepoint if operating in validation only mode
1717: --
1718: savepoint delete_copy_entity_results;
1719: --
1720: hr_utility.set_location(l_proc, 20);
1721: --
1722: -- Process Logic
1723: --
1724: l_object_version_number := p_object_version_number;

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

1731: -- ,p_effective_date => p_effective_date
1732: );
1733: --
1734: --
1735: hr_utility.set_location(l_proc, 60);
1736: --
1737: -- When in validation only mode raise the Validate_Enabled exception
1738: --
1739: if p_validate then

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

1739: if p_validate then
1740: raise hr_api.validate_enabled;
1741: end if;
1742: --
1743: hr_utility.set_location(' Leaving:'||l_proc, 70);
1744: --
1745: exception
1746: --
1747: when hr_api.validate_enabled then

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

1781: l_proc varchar2(72) := g_package||'lck';
1782: --
1783: begin
1784: --
1785: hr_utility.set_location('Entering:'|| l_proc, 10);
1786: --
1787: ben_cpe_shd.lck
1788: (
1789: p_copy_entity_result_id => p_copy_entity_result_id

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

1789: p_copy_entity_result_id => p_copy_entity_result_id
1790: ,p_object_version_number => p_object_version_number
1791: );
1792: --
1793: hr_utility.set_location(' Leaving:'||l_proc, 70);
1794: --
1795: end lck;
1796: --
1797: end ben_copy_entity_results_api;