DBA Data[Home] [Help]

APPS.IRC_REC_TEAM_MEMBERS_API dependencies on HR_UTILITY

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

32: l_end_date date;
33: l_rec_team_member_id number;
34: --
35: begin
36: hr_utility.set_location('Entering:'|| l_proc, 10);
37: --
38: -- Issue a savepoint
39: --
40: savepoint create_rec_team_member;

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

114: --
115: p_object_version_number := l_object_version_number;
116: p_rec_team_member_id := l_rec_team_member_id;
117: --
118: hr_utility.set_location(' Leaving:'||l_proc, 70);
119: exception
120: when hr_api.validate_enabled then
121: --
122: -- As the Validate_Enabled exception has been raised

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

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

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

140: -- Reset IN OUT parameters and set OUT parameters
141: --
142: p_object_version_number := null;
143: p_rec_team_member_id := null;
144: hr_utility.set_location(' Leaving:'||l_proc, 90);
145: raise;
146: end CREATE_REC_TEAM_MEMBER;
147: --
148: -- ----------------------------------------------------------------------------

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

171: l_object_version_number number := p_object_version_number;
172: l_start_date date;
173: l_end_date date;
174: begin
175: hr_utility.set_location('Entering:'|| l_proc, 10);
176: --
177: -- Issue a savepoint
178: --
179: savepoint update_rec_team_member;

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

252: -- Set all output arguments
253: --
254: p_object_version_number := l_object_version_number;
255: --
256: hr_utility.set_location(' Leaving:'||l_proc, 70);
257: exception
258: when hr_api.validate_enabled then
259: --
260: -- As the Validate_Enabled exception has been raised

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

269: --
270: -- Reset IN OUT parameters and set OUT parameters
271: --
272: p_object_version_number := l_object_version_number;
273: hr_utility.set_location(' Leaving:'||l_proc, 80);
274: when others then
275: --
276: -- A validation or unexpected error has occured
277: --

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

279: --
280: -- Reset IN OUT parameters and set OUT parameters
281: --
282: p_object_version_number := l_object_version_number;
283: hr_utility.set_location(' Leaving:'||l_proc, 90);
284: raise;
285: end UPDATE_REC_TEAM_MEMBER;
286: --
287: -- ----------------------------------------------------------------------------

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

297: -- Declare cursors and local variables
298: --
299: l_proc varchar2(72) := g_package||'delete_rec_team_member';
300: begin
301: hr_utility.set_location('Entering:'|| l_proc, 10);
302: --
303: -- Issue a savepoint
304: --
305: savepoint delete_rec_team_member;

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

349: --
350: -- Set all output arguments
351: --
352: --
353: hr_utility.set_location(' Leaving:'||l_proc, 70);
354: exception
355: when hr_api.validate_enabled then
356: --
357: -- As the Validate_Enabled exception has been raised

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

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

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

368: --
369: -- A validation or unexpected error has occured
370: --
371: rollback to DELETE_REC_TEAM_MEMBER;
372: hr_utility.set_location(' Leaving:'||l_proc, 90);
373: raise;
374: end DELETE_REC_TEAM_MEMBER;
375: --
376: end IRC_REC_TEAM_MEMBERS_API;