DBA Data[Home] [Help]

APPS.PER_SHARED_TYPES_TL_API dependencies on HR_UTILITY

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

24: l_proc varchar2(72) := g_package||'create_shared_types_tl';
25: --
26: begin
27: --
28: hr_utility.set_location('Entering:'|| l_proc, 10);
29: --
30: -- Issue a savepoint if operating in validation only mode
31: --
32: savepoint create_shared_types_tl;

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

30: -- Issue a savepoint if operating in validation only mode
31: --
32: savepoint create_shared_types_tl;
33: --
34: hr_utility.set_location(l_proc, 20);
35: --
36: -- Process Logic
37: --
38: begin

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

84: -- End of API User Hook for the after hook of create_shared_types_tl
85: --
86: end;
87: --
88: hr_utility.set_location(l_proc, 60);
89: --
90: -- When in validation only mode raise the Validate_Enabled exception
91: --
92: if p_validate then

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

97: --
98: p_shared_type_id := l_shared_type_id;
99: p_language := l_language;
100: --
101: hr_utility.set_location(' Leaving:'||l_proc, 70);
102: --
103: exception
104: --
105: when hr_api.validate_enabled then

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

114: -- when validation only mode is being used.)
115: --
116: p_shared_type_id := null;
117: p_language := null;
118: hr_utility.set_location(' Leaving:'||l_proc, 80);
119: --
120: when others then
121: --
122: -- A validation or unexpected error has occured

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

145: l_language per_shared_types_tl.language%TYPE;
146: --
147: begin
148: --
149: hr_utility.set_location('Entering:'|| l_proc, 10);
150: --
151: -- Issue a savepoint if operating in validation only mode
152: --
153: savepoint update_shared_types_tl;

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

151: -- Issue a savepoint if operating in validation only mode
152: --
153: savepoint update_shared_types_tl;
154: --
155: hr_utility.set_location(l_proc, 20);
156: --
157: -- Process Logic
158: --
159: --

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

206: -- End of API User Hook for the after hook of update_shared_types_tl
207: --
208: end;
209: --
210: hr_utility.set_location(l_proc, 60);
211: --
212: -- When in validation only mode raise the Validate_Enabled exception
213: --
214: if p_validate then

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

218: -- Set all output arguments
219: --
220: p_language := l_language;
221: --
222: hr_utility.set_location(' Leaving:'||l_proc, 70);
223: --
224: exception
225: --
226: when hr_api.validate_enabled then

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

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

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

261: l_language per_shared_types_tl.language%TYPE;
262: --
263: begin
264: --
265: hr_utility.set_location('Entering:'|| l_proc, 10);
266: --
267: -- Issue a savepoint if operating in validation only mode
268: --
269: savepoint delete_shared_types_tl;

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

267: -- Issue a savepoint if operating in validation only mode
268: --
269: savepoint delete_shared_types_tl;
270: --
271: hr_utility.set_location(l_proc, 20);
272: --
273: -- Process Logic
274: --
275: --

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

317: -- End of API User Hook for the after hook of delete_shared_types_tl
318: --
319: end;
320: --
321: hr_utility.set_location(l_proc, 60);
322: --
323: -- When in validation only mode raise the Validate_Enabled exception
324: --
325: if p_validate then

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

325: if p_validate then
326: raise hr_api.validate_enabled;
327: end if;
328: --
329: hr_utility.set_location(' Leaving:'||l_proc, 70);
330: --
331: exception
332: --
333: when hr_api.validate_enabled then

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

369: l_proc varchar2(72) := g_package||'lck';
370: --
371: begin
372: --
373: hr_utility.set_location('Entering:'|| l_proc, 10);
374: --
375: per_stt_shd.lck
376: (
377: p_shared_type_id => p_shared_type_id

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

377: p_shared_type_id => p_shared_type_id
378: ,p_language => p_language
379: );
380: --
381: hr_utility.set_location(' Leaving:'||l_proc, 70);
382: --
383: end lck;
384: --
385: end per_shared_types_tl_api;