DBA Data[Home] [Help]

APPS.PAY_TIME_DEF_USAGE_API dependencies on HR_UTILITY

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

22: l_effective_date date;
23: l_proc varchar2(72) := g_package||'create_time_def_usage';
24: l_object_version_number number;
25: begin
26: hr_utility.set_location('Entering:'|| l_proc, 10);
27: --
28: -- Issue a savepoint
29: --
30: savepoint create_time_def_usage;

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

89: -- Set all IN OUT and OUT parameters with out values
90: --
91: p_object_version_number := l_object_version_number;
92: --
93: hr_utility.set_location(' Leaving:'||l_proc, 70);
94:
95: exception
96: when hr_api.validate_enabled then
97: --

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

105: -- when validation only mode is being used.)
106: --
107: p_object_version_number := null;
108:
109: hr_utility.set_location(' Leaving:'||l_proc, 80);
110: when others then
111: --
112: -- A validation or unexpected error has occured
113: --

Line 120: hr_utility.set_location(' Leaving:'||l_proc, 90);

116: -- Reset IN OUT parameters and set all
117: -- OUT parameters, including warnings, to null
118: --
119: p_object_version_number := null;
120: hr_utility.set_location(' Leaving:'||l_proc, 90);
121: raise;
122: end create_time_def_usage;
123: --
124: -- ----------------------------------------------------------------------------

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

137: --
138: l_effective_date date;
139: l_proc varchar2(72) := g_package||'delete_time_def_usage';
140: begin
141: hr_utility.set_location('Entering:'|| l_proc, 10);
142: --
143: -- Issue a savepoint
144: --
145: savepoint delete_time_def_usage;

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

200: if p_validate then
201: raise hr_api.validate_enabled;
202: end if;
203: --
204: hr_utility.set_location(' Leaving:'||l_proc, 70);
205: exception
206: when hr_api.validate_enabled then
207: --
208: -- As the Validate_Enabled exception has been raised

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

209: -- we must rollback to the savepoint
210: --
211: rollback to delete_time_def_usage;
212: --
213: hr_utility.set_location(' Leaving:'||l_proc, 80);
214: when others then
215: --
216: -- A validation or unexpected error has occured
217: --

Line 220: hr_utility.set_location(' Leaving:'||l_proc, 90);

216: -- A validation or unexpected error has occured
217: --
218: rollback to delete_time_def_usage;
219: --
220: hr_utility.set_location(' Leaving:'||l_proc, 90);
221: raise;
222: end delete_time_def_usage;
223: --
224: end PAY_TIME_DEF_USAGE_API;