DBA Data[Home] [Help]

APPS.HR_AUTHORIA_MAPPING_API dependencies on HR_UTILITY

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

24: l_proc varchar2(72) := g_package||'CREATE_AUTHORIA_MAPPING';
25: l_authoria_mapping_id number(15);
26: l_object_version_number number(9);
27: begin
28: hr_utility.set_location('Entering:'|| l_proc, 10);
29: --
30: -- Issue a savepoint
31: --
32: savepoint CREATE_AUTHORIA_MAPPING;

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

93: -- Set all output arguments
94: --
95: p_authoria_mapping_id := l_authoria_mapping_id;
96: p_object_version_number := l_object_version_number;
97: hr_utility.set_location(' Leaving:'||l_proc, 70);
98: exception
99: when hr_api.validate_enabled then
100: --
101: -- As the Validate_Enabled exception has been raised

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

108: -- when validation only mode is being used.)
109: --
110: p_authoria_mapping_id := null;
111: p_object_version_number := null;
112: hr_utility.set_location(' Leaving:'||l_proc, 80);
113: when others then
114: --
115: -- A validation or unexpected error has occured
116: --

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

119: --Set OUT parameters for NOCOPY
120: --
121: p_authoria_mapping_id := null;
122: p_object_version_number := null;
123: hr_utility.set_location(' Leaving:'||l_proc, 90);
124: raise;
125: end CREATE_AUTHORIA_MAPPING;
126: --
127: --

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

143: --
144: l_proc varchar2(72) := g_package||'UPDATE_AUTHORIA_MAPPING';
145: l_object_version_number number(9);
146: begin
147: hr_utility.set_location('Entering:'|| l_proc, 10);
148: --
149: -- Issue a savepoint
150: --
151: savepoint UPDATE_AUTHORIA_MAPPING;

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

216: --
217: -- Set all output arguments
218: --
219: p_object_version_number := l_object_version_number;
220: hr_utility.set_location(' Leaving:'||l_proc, 70);
221: exception
222: when hr_api.validate_enabled then
223: --
224: -- As the Validate_Enabled exception has been raised

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

230: -- (Any key or derived arguments must be set to null
231: -- when validation only mode is being used.)
232: --
233: p_object_version_number := null;
234: hr_utility.set_location(' Leaving:'||l_proc, 80);
235: when others then
236: --
237: -- A validation or unexpected error has occured
238: --

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

237: -- A validation or unexpected error has occured
238: --
239: rollback to UPDATE_AUTHORIA_MAPPING;
240: p_object_version_number := null;
241: hr_utility.set_location(' Leaving:'||l_proc, 90);
242: raise;
243: end UPDATE_AUTHORIA_MAPPING;
244: --
245: --

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

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

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

312: --
313: if p_validate then
314: raise hr_api.validate_enabled;
315: end if;
316: hr_utility.set_location(' Leaving:'||l_proc, 70);
317: exception
318: when hr_api.validate_enabled then
319: --
320: -- As the Validate_Enabled exception has been raised

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

320: -- As the Validate_Enabled exception has been raised
321: -- we must rollback to the savepoint
322: --
323: rollback to DELETE_AUTHORIA_MAPPING;
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_AUTHORIA_MAPPING;
330: hr_utility.set_location(' Leaving:'||l_proc, 90);
331: raise;
332: end DELETE_AUTHORIA_MAPPING;
333: --
334: --