DBA Data[Home] [Help]

APPS.BEN_PERSON_ACTIONS_API dependencies on HR_UTILITY

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

28: l_object_version_number ben_person_actions.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_person_actions;

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

34: -- Issue a savepoint if operating in validation only mode
35: --
36: savepoint create_person_actions;
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_person_actions
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_person_action_id := l_person_action_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_person_action_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_person_actions.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_person_actions;

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

173: -- Issue a savepoint if operating in validation only mode
174: --
175: savepoint update_person_actions;
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_person_actions
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 304: hr_utility.set_location('Entering:'|| l_proc, 10);

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

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

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

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

362: -- End of API User Hook for the after hook of delete_person_actions
363: --
364: end;
365: --
366: hr_utility.set_location(l_proc, 60);
367: --
368: -- When in validation only mode raise the Validate_Enabled exception
369: --
370: if p_validate then

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

370: if p_validate then
371: raise hr_api.validate_enabled;
372: end if;
373: --
374: hr_utility.set_location(' Leaving:'||l_proc, 70);
375: --
376: exception
377: --
378: when hr_api.validate_enabled then

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

414: l_proc varchar2(72) := g_package||'lck';
415: --
416: begin
417: --
418: hr_utility.set_location('Entering:'|| l_proc, 10);
419: --
420: ben_act_shd.lck
421: (
422: p_person_action_id => p_person_action_id

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

422: p_person_action_id => p_person_action_id
423: ,p_object_version_number => p_object_version_number
424: );
425: --
426: hr_utility.set_location(' Leaving:'||l_proc, 70);
427: --
428: end lck;
429: --
430: end ben_person_actions_api;