DBA Data[Home] [Help]

APPS.OTA_FRM_OBJ_INCLUSION_API dependencies on HR_UTILITY

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

27: l_object_version_number number;
28: l_effective_date date;
29: begin
30:
31: hr_utility.set_location('Entering:'|| l_proc, 10);
32: --
33: -- Issue a savepoint
34: --
35: savepoint CREATE_FRM_OBJ_INCLUSION;

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

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

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

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

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

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

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

153: l_object_version_number number := p_object_version_number;
154: l_effective_date date;
155: begin
156:
157: hr_utility.set_location('Entering:'|| l_proc, 10);
158: --
159: -- Issue a savepoint
160: --
161: savepoint UPDATE_FRM_OBJ_INCLUSION;

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

227: end if;
228: --
229:
230:
231: hr_utility.set_location(' Leaving:'||l_proc, 70);
232: exception
233: when hr_api.validate_enabled then
234: --
235: -- As the Validate_Enabled exception has been raised

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

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

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

248: -- A validation or unexpected error has occured
249: --
250: rollback to UPDATE_FRM_OBJ_INCLUSION;
251: p_object_version_number := l_object_version_number;
252: hr_utility.set_location(' Leaving:'||l_proc, 90);
253: raise;
254:
255: end update_frm_obj_inclusion;
256:

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

274: --
275: --
276: begin
277:
278: hr_utility.set_location('Entering:'|| l_proc, 10);
279: --
280: -- Issue a savepoint
281: --
282: savepoint DELETE_FRM_OBJ_INCLUSION;

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

340: --
341: -- Set all output arguments
342: --
343: --
344: hr_utility.set_location(' Leaving:'||l_proc, 170);
345: exception
346: when hr_api.validate_enabled then
347: --
348: -- As the Validate_Enabled exception has been raised

Line 357: hr_utility.set_location(' Leaving:'||l_proc, 180);

353: -- Only set output warning arguments
354: -- (Any key or derived arguments must be set to null
355: -- when validation only mode is being used.)
356: --
357: hr_utility.set_location(' Leaving:'||l_proc, 180);
358: when others then
359: --
360: -- A validation or unexpected error has occured
361: --

Line 363: hr_utility.set_location(' Leaving:'||l_proc, 190);

359: --
360: -- A validation or unexpected error has occured
361: --
362: rollback to DELETE_FRM_OBJ_INCLUSION;
363: hr_utility.set_location(' Leaving:'||l_proc, 190);
364: raise;
365:
366: end delete_frm_obj_inclusion;
367: --