DBA Data[Home] [Help]

APPS.PER_SOLUTION_SET_API dependencies on HR_UTILITY

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

28: l_user_id PER_SOLUTION_SETS.USER_ID%TYPE;
29: l_object_version_number PER_SOLUTION_SETS.OBJECT_VERSION_NUMBER%TYPE;
30: --
31: begin
32: hr_utility.set_location('Entering:'|| l_proc, 10);
33: --
34: savepoint CREATE_SOLUTION_SET;
35: --
36: -- Register user key values

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

103: -- Set all output arguments
104: --
105: p_object_version_number := l_object_version_number;
106: --
107: hr_utility.set_location(' Leaving:'||l_proc, 70);
108: exception
109: when hr_api.validate_enabled then
110: --
111: -- As the Validate_Enabled exception has been raised

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

118: -- when validation only mode is being used.)
119: --
120: p_object_version_number := null;
121: --
122: hr_utility.set_location(' Leaving:'||l_proc, 80);
123: when others then
124: --
125: -- A validation or unexpected error has occured
126: --

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

124: --
125: -- A validation or unexpected error has occured
126: --
127: rollback to CREATE_SOLUTION_SET;
128: hr_utility.set_location(' Leaving:'||l_proc, 90);
129: raise;
130: end CREATE_SOLUTION_SET;
131: --
132:

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

152: l_effective_date date;
153: l_object_version_number PER_SOLUTION_SETS.OBJECT_VERSION_NUMBER%TYPE;
154: --
155: begin
156: hr_utility.set_location('Entering:'|| l_proc, 10);
157: --
158: savepoint UPDATE_SOLUTION_SET;
159: --
160: -- Store initial value for OVN in out parameter.

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

226: -- Set all output arguments
227: --
228: p_object_version_number := l_object_version_number;
229: --
230: hr_utility.set_location(' Leaving:'||l_proc, 70);
231: exception
232: when hr_api.validate_enabled then
233: --
234: -- As the Validate_Enabled exception has been raised

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

239: -- Only set output warning arguments
240: -- (Any key or derived arguments must be set to null
241: -- when validation only mode is being used.)
242: --
243: hr_utility.set_location(' Leaving:'||l_proc, 80);
244: when others then
245: --
246: -- A validation or unexpected error has occured
247: --

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

245: --
246: -- A validation or unexpected error has occured
247: --
248: rollback to UPDATE_SOLUTION_SET;
249: hr_utility.set_location(' Leaving:'||l_proc, 90);
250: raise;
251: end UPDATE_SOLUTION_SET;
252:
253:

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

266: --
267: l_proc varchar2(72) := g_package||'DELETE_SOLUTION_SET';
268: --
269: begin
270: hr_utility.set_location('Entering:'|| l_proc, 10);
271: --
272: savepoint DELETE_SOLUTION_SET;
273: --
274: -- Call Before Process User Hook

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

312: if p_validate then
313: raise hr_api.validate_enabled;
314: end if;
315: --
316: hr_utility.set_location(' Leaving:'||l_proc, 70);
317: exception
318: when hr_api.validate_enabled then
319: --
320: -- As the Validate_Enabled exception has been raised

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

321: -- we must rollback to the savepoint
322: --
323: rollback to DELETE_SOLUTION_SET;
324: --
325: hr_utility.set_location(' Leaving:'||l_proc, 80);
326: when others then
327: --
328: rollback to DELETE_SOLUTION_SET;
329: --

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

326: when others then
327: --
328: rollback to DELETE_SOLUTION_SET;
329: --
330: hr_utility.set_location(' Leaving:'||l_proc, 90);
331: --
332: raise;
333: --
334: end DELETE_SOLUTION_SET;