DBA Data[Home] [Help]

APPS.PQH_DE_OPERATIONS_API dependencies on HR_UTILITY

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

27:
28: l_operation_Number PQH_DE_OPERATIONS.OPERATION_NUMBER%TYPE;
29:
30: begin
31: hr_utility.set_location('Entering:'|| l_proc, 10);
32: --
33: -- Issue a savepoint
34: --
35: savepoint Insert_OPERATIONS;

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

101: P_OPERATION_ID := l_OPERATION_ID;
102: p_object_version_number := l_object_version_number;
103:
104: --
105: hr_utility.set_location(' Leaving:'||l_proc, 70);
106: exception
107: when hr_api.validate_enabled then
108: --
109: -- As the Validate_Enabled exception has been raised

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

116: -- when validation only mode is being used.)
117: --
118: p_OPERATION_ID := null;
119: p_object_version_number := null;
120: hr_utility.set_location(' Leaving:'||l_proc, 80);
121:
122: when others then
123: p_OPERATION_ID := null;
124: p_object_version_number := null;

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

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

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

147: l_object_Version_Number PQH_DE_OPERATIONS.OBJECT_VERSION_NUMBER%TYPE := P_Object_version_Number;
148: L_Effective_Date Date;
149:
150: Begin
151: hr_utility.set_location('Entering:'|| l_proc, 10);
152: --
153: -- Issue a savepoint
154: --
155: savepoint Update_OPERATIONS;

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

219:
220: p_object_version_number := l_object_version_number;
221:
222: --
223: hr_utility.set_location(' Leaving:'||l_proc, 70);
224: exception
225: when hr_api.validate_enabled then
226: --
227: -- As the Validate_Enabled exception has been raised

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

232: -- Only set output warning arguments
233: -- (Any key or derived arguments must be set to null
234: -- when validation only mode is being used.)
235: --
236: hr_utility.set_location(' Leaving:'||l_proc, 80);
237:
238: when others then
239: p_object_version_number := l_object_version_number;
240: --

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

240: --
241: -- A validation or unexpected error has occured
242: --
243: rollback to Update_OPERATIONS;
244: hr_utility.set_location(' Leaving:'||l_proc, 90);
245: raise;
246: end Update_OPERATIONS;
247:
248: --

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

258: --
259: l_proc varchar2(72) := g_package||'delete_OPERATIONS';
260: --
261: begin
262: hr_utility.set_location('Entering:'|| l_proc, 10);
263: --
264: -- Issue a savepoint
265: --
266: savepoint delete_OPERATIONS;

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

307: end if;
308: --
309: -- Set all output arguments
310: --
311: hr_utility.set_location(' Leaving:'||l_proc, 70);
312: exception
313: when hr_api.validate_enabled then
314: --
315: -- As the Validate_Enabled exception has been raised

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

320: -- Only set output warning arguments
321: -- (Any key or derived arguments must be set to null
322: -- when validation only mode is being used.)
323: --
324: hr_utility.set_location(' Leaving:'||l_proc, 80);
325: when others then
326: --
327: -- A validation or unexpected error has occured
328: --

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

326: --
327: -- A validation or unexpected error has occured
328: --
329: rollback to delete_OPERATIONS;
330: hr_utility.set_location(' Leaving:'||l_proc, 90);
331: raise;
332: end delete_OPERATIONS;
333:
334: end PQH_DE_OPERATIONS_API;