DBA Data[Home] [Help]

APPS.HR_AUTHORIA_VARIABLEMAP_API dependencies on HR_UTILITY

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

24: l_proc varchar2(72) := g_package||'CREATE_VARIABLEMAP';
25: l_ath_variablemap_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_VARIABLEMAP;

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

93: -- Set all output arguments
94: --
95: p_ath_variablemap_id := l_ath_variablemap_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_ath_variablemap_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 122: hr_utility.set_location(' Leaving:'||l_proc, 90);

118: --set OUT parameters
119: --
120: p_ath_variablemap_id := null;
121: p_object_version_number := null;
122: hr_utility.set_location(' Leaving:'||l_proc, 90);
123: raise;
124: end CREATE_VARIABLEMAP;
125: --
126: --

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

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

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

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

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

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

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

237: --
238: rollback to UPDATE_VARIABLEMAP;
239: -- set out variables
240: p_object_version_number := null;
241: hr_utility.set_location(' Leaving:'||l_proc, 90);
242: raise;
243: end UPDATE_VARIABLEMAP;
244: --
245: --

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

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

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_VARIABLEMAP;
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_VARIABLEMAP;
330: hr_utility.set_location(' Leaving:'||l_proc, 90);
331: raise;
332: end DELETE_VARIABLEMAP;
333: --
334: --