DBA Data[Home] [Help]

APPS.PER_SOLUTION_TYPE_CMPT_API dependencies on HR_UTILITY

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

31: l_legislation_code PER_SOLUTION_TYPE_CMPTS.LEGISLATION_CODE%TYPE;
32: l_object_version_number PER_SOLUTION_TYPE_CMPTS.OBJECT_VERSION_NUMBER%TYPE;
33: --
34: begin
35: hr_utility.set_location('Entering:'|| l_proc, 10);
36: --
37: savepoint CREATE_SOLUTION_TYPE_CMPT;
38: --
39: -- Register user key values

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

113: -- Set all output arguments
114: --
115: p_object_version_number := l_object_version_number;
116: --
117: hr_utility.set_location(' Leaving:'||l_proc, 70);
118: exception
119: when hr_api.validate_enabled then
120: --
121: -- As the Validate_Enabled exception has been raised

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

128: -- when validation only mode is being used.)
129: --
130: p_object_version_number := null;
131: --
132: hr_utility.set_location(' Leaving:'||l_proc, 80);
133: when others then
134: --
135: -- A validation or unexpected error has occured
136: --

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

134: --
135: -- A validation or unexpected error has occured
136: --
137: rollback to CREATE_SOLUTION_TYPE_CMPT;
138: hr_utility.set_location(' Leaving:'||l_proc, 90);
139: raise;
140: end CREATE_SOLUTION_TYPE_CMPT;
141: --
142:

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

164: l_effective_date date;
165: l_object_version_number PER_SOLUTION_TYPE_CMPTS.OBJECT_VERSION_NUMBER%TYPE;
166: --
167: begin
168: hr_utility.set_location('Entering:'|| l_proc, 10);
169: --
170: savepoint UPDATE_SOLUTION_TYPE_CMPT;
171: --
172: -- 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_TYPE_CMPT;
267: hr_utility.set_location(' Leaving:'||l_proc, 90);
268: raise;
269: end UPDATE_SOLUTION_TYPE_CMPT;
270:
271:

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

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

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

334: if p_validate then
335: raise hr_api.validate_enabled;
336: end if;
337: --
338: hr_utility.set_location(' Leaving:'||l_proc, 70);
339: exception
340: when hr_api.validate_enabled then
341: --
342: -- As the Validate_Enabled exception has been raised

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

343: -- we must rollback to the savepoint
344: --
345: rollback to DELETE_SOLUTION_TYPE_CMPT;
346: --
347: hr_utility.set_location(' Leaving:'||l_proc, 80);
348: when others then
349: --
350: rollback to DELETE_SOLUTION_TYPE_CMPT;
351: --

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

348: when others then
349: --
350: rollback to DELETE_SOLUTION_TYPE_CMPT;
351: --
352: hr_utility.set_location(' Leaving:'||l_proc, 90);
353: --
354: raise;
355: --
356: end DELETE_SOLUTION_TYPE_CMPT;