DBA Data[Home] [Help]

APPS.IRC_TEMPLATE_ASSOCIATION_API dependencies on HR_UTILITY

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

30: l_object_version_number number;
31: l_effective_date date;
32: l_start_date date := trunc(p_start_date);
33: begin
34: hr_utility.set_location('Entering:'|| l_proc, 10);
35: --
36: -- Issue a savepoint
37: --
38: savepoint create_template_association;

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

116: --
117: p_object_version_number := l_object_version_number;
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_template_association_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 141: hr_utility.set_location(' Leaving:'||l_proc, 90);

137: --
138: -- A validation or unexpected error has occured
139: --
140: rollback to create_template_association;
141: hr_utility.set_location(' Leaving:'||l_proc, 90);
142: raise;
143: end create_template_association;
144:
145: --

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

170: l_effective_date date;
171: l_start_date date := trunc(p_start_date);
172:
173: begin
174: hr_utility.set_location('Entering:'|| l_proc||p_object_version_number, 10);
175: --
176: -- Issue a savepoint
177: --
178: savepoint update_template_association;

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

255: end if;
256: --
257: p_object_version_number := l_object_version_number;
258: --
259: hr_utility.set_location(' Leaving:'||l_proc||p_object_version_number, 70);
260: exception
261: when hr_api.validate_enabled then
262: --
263: -- As the Validate_Enabled exception has been raised

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

268: -- Only set output warning arguments
269: -- (Any key or derived arguments must be set to null
270: -- when validation only mode is being used.)
271: --
272: hr_utility.set_location(' Leaving:'||l_proc, 80);
273: when others then
274: --
275: -- A validation or unexpected error has occured
276: --

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

274: --
275: -- A validation or unexpected error has occured
276: --
277: rollback to update_template_association;
278: hr_utility.set_location(' Leaving:'||l_proc, 90);
279: raise;
280: end update_template_association;
281: --
282: -- ----------------------------------------------------------------------------

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

296: l_proc varchar2(72) := g_package||'delete_template_association';
297: l_object_version_number number;
298:
299: begin
300: hr_utility.set_location('Entering:'|| l_proc, 10);
301: --
302: -- Issue a savepoint
303: --
304: savepoint delete_template_association;

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

353: --
354: if p_validate then
355: raise hr_api.validate_enabled;
356: end if;
357: hr_utility.set_location(' Leaving:'||l_proc, 70);
358:
359: exception
360: when hr_api.validate_enabled then
361: --

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

367: -- Only set output warning arguments
368: -- (Any key or derived arguments must be set to null
369: -- when validation only mode is being used.)
370: --
371: hr_utility.set_location(' Leaving:'||l_proc, 80);
372: when others then
373: --
374: -- A validation or unexpected error has occured
375: --

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

373: --
374: -- A validation or unexpected error has occured
375: --
376: rollback to delete_template_association;
377: hr_utility.set_location(' Leaving:'||l_proc, 90);
378: raise;
379: end delete_template_association;
380:
381: