DBA Data[Home] [Help]

APPS.BEN_EXT_CRIT_TYP_API dependencies on HR_UTILITY

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

28: l_object_version_number ben_ext_crit_typ.object_version_number%TYPE;
29: --
30: begin
31: --
32: hr_utility.set_location('Entering:'|| l_proc, 10);
33: --
34: -- Issue a savepoint if operating in validation only mode
35: --
36: savepoint create_EXT_CRIT_TYP;

Line 38: hr_utility.set_location(l_proc, 20);

34: -- Issue a savepoint if operating in validation only mode
35: --
36: savepoint create_EXT_CRIT_TYP;
37: --
38: hr_utility.set_location(l_proc, 20);
39: --
40: -- Process Logic
41: --
42: begin

Line 105: hr_utility.set_location(l_proc, 60);

101: -- End of API User Hook for the after hook of create_EXT_CRIT_TYP
102: --
103: end;
104: --
105: hr_utility.set_location(l_proc, 60);
106: --
107: -- When in validation only mode raise the Validate_Enabled exception
108: --
109: if p_validate then

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

114: --
115: p_ext_crit_typ_id := l_ext_crit_typ_id;
116: p_object_version_number := l_object_version_number;
117: --
118: hr_utility.set_location(' Leaving:'||l_proc, 70);
119: --
120: exception
121: --
122: when hr_api.validate_enabled then

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

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

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

167: l_object_version_number ben_ext_crit_typ.object_version_number%TYPE;
168: --
169: begin
170: --
171: hr_utility.set_location('Entering:'|| l_proc, 10);
172: --
173: -- Issue a savepoint if operating in validation only mode
174: --
175: savepoint update_EXT_CRIT_TYP;

Line 177: hr_utility.set_location(l_proc, 20);

173: -- Issue a savepoint if operating in validation only mode
174: --
175: savepoint update_EXT_CRIT_TYP;
176: --
177: hr_utility.set_location(l_proc, 20);
178: --
179: -- Process Logic
180: --
181: l_object_version_number := p_object_version_number;

Line 247: hr_utility.set_location(l_proc, 60);

243: -- End of API User Hook for the after hook of update_EXT_CRIT_TYP
244: --
245: end;
246: --
247: hr_utility.set_location(l_proc, 60);
248: --
249: -- When in validation only mode raise the Validate_Enabled exception
250: --
251: if p_validate then

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

255: -- Set all output arguments
256: --
257: p_object_version_number := l_object_version_number;
258: --
259: hr_utility.set_location(' Leaving:'||l_proc, 70);
260: --
261: exception
262: --
263: when hr_api.validate_enabled then

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

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

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

301: l_object_version_number ben_ext_crit_typ.object_version_number%TYPE;
302: --
303: begin
304: --
305: hr_utility.set_location('Entering:'|| l_proc, 10);
306: --
307: -- Issue a savepoint if operating in validation only mode
308: --
309: savepoint delete_EXT_CRIT_TYP;

Line 311: hr_utility.set_location(l_proc, 20);

307: -- Issue a savepoint if operating in validation only mode
308: --
309: savepoint delete_EXT_CRIT_TYP;
310: --
311: hr_utility.set_location(l_proc, 20);
312: --
313: -- Process Logic
314: --
315: l_object_version_number := p_object_version_number;

Line 370: hr_utility.set_location(l_proc, 60);

366: -- End of API User Hook for the after hook of delete_EXT_CRIT_TYP
367: --
368: end;
369: --
370: hr_utility.set_location(l_proc, 60);
371: --
372: -- When in validation only mode raise the Validate_Enabled exception
373: --
374: if p_validate then

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

374: if p_validate then
375: raise hr_api.validate_enabled;
376: end if;
377: --
378: hr_utility.set_location(' Leaving:'||l_proc, 70);
379: --
380: exception
381: --
382: when hr_api.validate_enabled then

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

418: l_proc varchar2(72) := g_package||'lck';
419: --
420: begin
421: --
422: hr_utility.set_location('Entering:'|| l_proc, 10);
423: --
424: ben_xct_shd.lck
425: (
426: p_ext_crit_typ_id => p_ext_crit_typ_id

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

426: p_ext_crit_typ_id => p_ext_crit_typ_id
427: ,p_object_version_number => p_object_version_number
428: );
429: --
430: hr_utility.set_location(' Leaving:'||l_proc, 70);
431: --
432: end lck;
433: --
434: end ben_EXT_CRIT_TYP_api;