DBA Data[Home] [Help]

APPS.PER_SOLUTION_API dependencies on HR_UTILITY

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

30: l_solution_id PER_SOLUTIONS.SOLUTION_ID%TYPE;
31: l_object_version_number PER_SOLUTIONS.OBJECT_VERSION_NUMBER%TYPE;
32: --
33: begin
34: hr_utility.set_location('Entering:'|| l_proc, 10);
35: --
36: savepoint CREATE_SOLUTION;
37: --
38: -- Truncate the time portion from all IN date parameters

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

107: --
108: p_solution_id := l_solution_id;
109: p_object_version_number := l_object_version_number;
110: --
111: hr_utility.set_location(' Leaving:'||l_proc, 70);
112: exception
113: when hr_api.validate_enabled then
114: --
115: -- As the Validate_Enabled exception has been raised

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

123: --
124: p_solution_id := null;
125: p_object_version_number := null;
126: --
127: hr_utility.set_location(' Leaving:'||l_proc, 80);
128: when others then
129: --
130: -- A validation or unexpected error has occured
131: --

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

129: --
130: -- A validation or unexpected error has occured
131: --
132: rollback to CREATE_SOLUTION;
133: hr_utility.set_location(' Leaving:'||l_proc, 90);
134: raise;
135: end CREATE_SOLUTION;
136: --
137:

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

161: l_solution_id PER_SOLUTIONS.SOLUTION_ID%TYPE;
162: l_object_version_number PER_SOLUTIONS.OBJECT_VERSION_NUMBER%TYPE;
163: --
164: begin
165: hr_utility.set_location('Entering:'|| l_proc, 10);
166: --
167: savepoint UPDATE_SOLUTION;
168: --
169: -- Store initial value for OVN in out parameter.

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

244: -- Set all output arguments
245: --
246: p_object_version_number := l_object_version_number;
247: --
248: hr_utility.set_location(' Leaving:'||l_proc, 70);
249: exception
250: when hr_api.validate_enabled then
251: --
252: -- As the Validate_Enabled exception has been raised

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

257: -- Only set output warning arguments
258: -- (Any key or derived arguments must be set to null
259: -- when validation only mode is being used.)
260: --
261: hr_utility.set_location(' Leaving:'||l_proc, 80);
262: when others then
263: --
264: -- A validation or unexpected error has occured
265: --

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

263: --
264: -- A validation or unexpected error has occured
265: --
266: rollback to UPDATE_SOLUTION;
267: hr_utility.set_location(' Leaving:'||l_proc, 90);
268: raise;
269: end UPDATE_SOLUTION;
270:
271:

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

283: --
284: l_proc varchar2(72) := g_package||'DELETE_SOLUTION';
285: --
286: begin
287: hr_utility.set_location('Entering:'|| l_proc, 10);
288: --
289: savepoint DELETE_SOLUTION;
290: --
291: -- Call Before Process User Hook

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

326: if p_validate then
327: raise hr_api.validate_enabled;
328: end if;
329: --
330: hr_utility.set_location(' Leaving:'||l_proc, 70);
331: exception
332: when hr_api.validate_enabled then
333: --
334: -- As the Validate_Enabled exception has been raised

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

335: -- we must rollback to the savepoint
336: --
337: rollback to DELETE_SOLUTION;
338: --
339: hr_utility.set_location(' Leaving:'||l_proc, 80);
340: when others then
341: --
342: rollback to DELETE_SOLUTION;
343: --

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

340: when others then
341: --
342: rollback to DELETE_SOLUTION;
343: --
344: hr_utility.set_location(' Leaving:'||l_proc, 90);
345: --
346: raise;
347: --
348: end DELETE_SOLUTION;