DBA Data[Home] [Help]

APPS.PER_SOLUTION_TYPE_API dependencies on HR_UTILITY

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

25: l_solution_type_name PER_SOLUTION_TYPES.SOLUTION_TYPE_NAME%TYPE;
26: l_object_version_number PER_SOLUTION_TYPES.OBJECT_VERSION_NUMBER%TYPE;
27: --
28: begin
29: hr_utility.set_location('Entering:'|| l_proc, 10);
30: --
31: savepoint CREATE_SOLUTION_TYPE;
32: --
33: -- Register user key values

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

93: -- Set all output arguments
94: --
95: p_object_version_number := l_object_version_number;
96: --
97: hr_utility.set_location(' Leaving:'||l_proc, 70);
98: exception
99: when hr_api.validate_enabled then
100: --
101: -- As the Validate_Enabled exception has been raised

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

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

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

114: --
115: -- A validation or unexpected error has occured
116: --
117: rollback to CREATE_SOLUTION_TYPE;
118: hr_utility.set_location(' Leaving:'||l_proc, 90);
119: raise;
120: end CREATE_SOLUTION_TYPE;
121: --
122:

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

140: l_effective_date date;
141: l_object_version_number PER_SOLUTION_TYPES.OBJECT_VERSION_NUMBER%TYPE;
142: --
143: begin
144: hr_utility.set_location('Entering:'|| l_proc, 10);
145: --
146: savepoint UPDATE_SOLUTION_TYPE;
147: --
148: -- Store initial value for OVN in out parameter.

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

208: -- Set all output arguments
209: --
210: p_object_version_number := l_object_version_number;
211: --
212: hr_utility.set_location(' Leaving:'||l_proc, 70);
213: exception
214: when hr_api.validate_enabled then
215: --
216: -- As the Validate_Enabled exception has been raised

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

221: -- Only set output warning arguments
222: -- (Any key or derived arguments must be set to null
223: -- when validation only mode is being used.)
224: --
225: hr_utility.set_location(' Leaving:'||l_proc, 80);
226: when others then
227: --
228: -- A validation or unexpected error has occured
229: --

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

227: --
228: -- A validation or unexpected error has occured
229: --
230: rollback to UPDATE_SOLUTION_TYPE;
231: hr_utility.set_location(' Leaving:'||l_proc, 90);
232: raise;
233: end UPDATE_SOLUTION_TYPE;
234:
235:

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

247: --
248: l_proc varchar2(72) := g_package||'DELETE_SOLUTION_TYPE';
249: --
250: begin
251: hr_utility.set_location('Entering:'|| l_proc, 10);
252: --
253: savepoint DELETE_SOLUTION_TYPE;
254: --
255: -- Call Before Process User Hook

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

290: if p_validate then
291: raise hr_api.validate_enabled;
292: end if;
293: --
294: hr_utility.set_location(' Leaving:'||l_proc, 70);
295: exception
296: when hr_api.validate_enabled then
297: --
298: -- As the Validate_Enabled exception has been raised

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

299: -- we must rollback to the savepoint
300: --
301: rollback to DELETE_SOLUTION_TYPE;
302: --
303: hr_utility.set_location(' Leaving:'||l_proc, 80);
304: when others then
305: --
306: rollback to DELETE_SOLUTION_TYPE;
307: --

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

304: when others then
305: --
306: rollback to DELETE_SOLUTION_TYPE;
307: --
308: hr_utility.set_location(' Leaving:'||l_proc, 90);
309: --
310: raise;
311: --
312: end DELETE_SOLUTION_TYPE;