DBA Data[Home] [Help]

APPS.FF_GLOBALS_API dependencies on HR_UTILITY

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

34: l_effective_start_date date;
35: l_effective_end_date date;
36: --
37: begin
38: hr_utility.set_location('Entering:'|| l_proc, 10);
39: --
40: -- Issue a savepoint
41: --
42: savepoint create_global;

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

121: p_effective_start_date := l_effective_start_date ;
122: p_effective_end_date := l_effective_end_date ;
123:
124: --
125: hr_utility.set_location(' Leaving:'||l_proc, 70);
126: exception
127: when hr_api.validate_enabled then
128: --
129: -- As the Validate_Enabled exception has been raised

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

139: p_object_version_number := null ;
140: p_effective_start_date := null ;
141: p_effective_end_date := null ;
142:
143: hr_utility.set_location(' Leaving:'||l_proc, 80);
144: when others then
145: --
146: -- A validation or unexpected error has occured
147: --

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

154: p_object_version_number := null ;
155: p_effective_start_date := null ;
156: p_effective_end_date := null ;
157:
158: hr_utility.set_location(' Leaving:'||l_proc, 90);
159: raise;
160: end create_global;
161: --
162: -- ----------------------------------------------------------------------------

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

184: l_effective_start_date date;
185: l_effective_end_date date;
186: --
187: begin
188: hr_utility.set_location('Entering:'|| l_proc, 10);
189: --
190: -- Issue a savepoint
191: --
192: savepoint update_global;

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

266: p_effective_start_date := l_effective_start_date ;
267: p_effective_end_date := l_effective_end_date ;
268:
269: --
270: hr_utility.set_location(' Leaving:'||l_proc, 70);
271: exception
272: when hr_api.validate_enabled then
273: --
274: -- As the Validate_Enabled exception has been raised

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

283: p_object_version_number := l_in_out_parameter;
284: p_effective_start_date := null ;
285: p_effective_end_date := null ;
286:
287: hr_utility.set_location(' Leaving:'||l_proc, 80);
288: when others then
289: --
290: -- A validation or unexpected error has occured
291: --

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

297: p_object_version_number := l_in_out_parameter;
298: p_effective_start_date := null ;
299: p_effective_end_date := null ;
300:
301: hr_utility.set_location(' Leaving:'||l_proc, 90);
302: raise;
303: end update_global;
304: --
305: -- ----------------------------------------------------------------------------

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

325: l_effective_start_date date;
326: l_effective_end_date date;
327: --
328: begin
329: hr_utility.set_location('Entering:'|| l_proc, 10);
330: --
331: -- Issue a savepoint
332: --
333: savepoint delete_global;

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

402: p_effective_start_date := l_effective_start_date ;
403: p_effective_end_date := l_effective_end_date ;
404:
405: --
406: hr_utility.set_location(' Leaving:'||l_proc, 70);
407: exception
408: when hr_api.validate_enabled then
409: --
410: -- As the Validate_Enabled exception has been raised

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

419: p_object_version_number := l_in_out_parameter;
420: p_effective_start_date := null ;
421: p_effective_end_date := null ;
422:
423: hr_utility.set_location(' Leaving:'||l_proc, 80);
424: when others then
425: --
426: -- A validation or unexpected error has occured
427: --

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

433: p_object_version_number := l_in_out_parameter;
434: p_effective_start_date := null ;
435: p_effective_end_date := null ;
436:
437: hr_utility.set_location(' Leaving:'||l_proc, 90);
438: raise;
439: end delete_global;
440: --
441: