DBA Data[Home] [Help]

APPS.HR_QUESTIONNAIRE_API dependencies on HR_UTILITY

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

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

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

116: -- Set all IN OUT and OUT parameters with out values
117: --
118:
119: --
120: hr_utility.set_location(' Leaving:'||l_proc, 70);
121: exception
122: when hr_api.validate_enabled then
123: --
124: -- As the Validate_Enabled exception has been raised

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

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

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

143: -- OUT parameters, including warnings, to null
144: --
145: p_object_version_number := null;
146: p_questionnaire_template_id := null;
147: hr_utility.set_location(' Leaving:'||l_proc, 90);
148: raise;
149: end create_questionnaire;
150: --
151: -- ----------------------------------------------------------------------------

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

170: l_effective_date date;
171: l_object_version_number number;
172: l_proc varchar2(72) := g_package||'update_questionnaire';
173: begin
174: hr_utility.set_location('Entering:'|| l_proc, 10);
175: --
176: -- Issue a savepoint
177: --
178: savepoint update_questionnaire;

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

258: end if;
259: --
260: -- Set all IN OUT and OUT parameters with out values
261: --
262: hr_utility.set_location(' Leaving:'||l_proc, 70);
263: exception
264: when hr_api.validate_enabled then
265: --
266: -- As the Validate_Enabled exception has been raised

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

273: -- when validation only mode is being used.)
274: --
275: p_object_version_number:=l_object_version_number;
276:
277: hr_utility.set_location(' Leaving:'||l_proc, 80);
278: when others then
279: --
280: -- A validation or unexpected error has occured
281: --

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

285: -- OUT parameters, including warnings, to null
286: --
287: p_object_version_number:=l_object_version_number;
288:
289: hr_utility.set_location(' Leaving:'||l_proc, 90);
290: raise;
291: end update_questionnaire;
292:
293: --

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

315:
316: l_effective_date date;
317: l_proc varchar2(72) := g_package||'delete_questionnaire';
318: begin
319: hr_utility.set_location('Entering:'|| l_proc, 10);
320: --
321: -- Issue a savepoint
322: --
323: savepoint delete_questionnaire;

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

413: --
414: -- Set all IN OUT and OUT parameters with out values
415: --
416: --
417: hr_utility.set_location(' Leaving:'||l_proc, 70);
418: exception
419: when hr_api.validate_enabled then
420: --
421: -- As the Validate_Enabled exception has been raised

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

426: -- Reset IN OUT parameters and set OUT parameters
427: -- (Any key or derived arguments must be set to null
428: -- when validation only mode is being used.)
429: --
430: hr_utility.set_location(' Leaving:'||l_proc, 80);
431: when others then
432: --
433: -- A validation or unexpected error has occured
434: --

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

437: -- Reset IN OUT parameters and set all
438: -- OUT parameters, including warnings, to null
439: --
440:
441: hr_utility.set_location(' Leaving:'||l_proc, 90);
442: raise;
443: end delete_questionnaire;
444:
445: end hr_questionnaire_api;