DBA Data[Home] [Help]

APPS.PQH_WORKSHEET_FUND_SRCS_API dependencies on HR_UTILITY

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

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

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

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

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

109: -- End of API User Hook for the after hook of create_WORKSHEET_FUND_SRC
110: --
111: end;
112: --
113: hr_utility.set_location(l_proc, 60);
114: --
115: -- When in validation only mode raise the Validate_Enabled exception
116: --
117: if p_validate then

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

122: --
123: p_worksheet_fund_src_id := l_worksheet_fund_src_id;
124: p_object_version_number := l_object_version_number;
125: --
126: hr_utility.set_location(' Leaving:'||l_proc, 70);
127: --
128: exception
129: --
130: when hr_api.validate_enabled then

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

139: -- when validation only mode is being used.)
140: --
141: p_worksheet_fund_src_id := null;
142: p_object_version_number := null;
143: hr_utility.set_location(' Leaving:'||l_proc, 80);
144: --
145: when others then
146: p_worksheet_fund_src_id := null;
147: p_object_version_number := null;

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

176: l_object_version_number pqh_worksheet_fund_srcs.object_version_number%TYPE;
177: --
178: begin
179: --
180: hr_utility.set_location('Entering:'|| l_proc, 10);
181: --
182: -- Issue a savepoint if operating in validation only mode
183: --
184: savepoint update_WORKSHEET_FUND_SRC;

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

182: -- Issue a savepoint if operating in validation only mode
183: --
184: savepoint update_WORKSHEET_FUND_SRC;
185: --
186: hr_utility.set_location(l_proc, 20);
187: --
188: -- Process Logic
189: --
190: l_object_version_number := p_object_version_number;

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

258: -- End of API User Hook for the after hook of update_WORKSHEET_FUND_SRC
259: --
260: end;
261: --
262: hr_utility.set_location(l_proc, 60);
263: --
264: -- When in validation only mode raise the Validate_Enabled exception
265: --
266: if p_validate then

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

270: -- Set all output arguments
271: --
272: p_object_version_number := l_object_version_number;
273: --
274: hr_utility.set_location(' Leaving:'||l_proc, 70);
275: --
276: exception
277: --
278: when hr_api.validate_enabled then

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

285: -- Only set output warning arguments
286: -- (Any key or derived arguments must be set to null
287: -- when validation only mode is being used.)
288: --
289: hr_utility.set_location(' Leaving:'||l_proc, 80);
290: --
291: when others then
292: p_object_version_number := l_object_version_number;
293: --

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

313: l_object_version_number pqh_worksheet_fund_srcs.object_version_number%TYPE;
314: --
315: begin
316: --
317: hr_utility.set_location('Entering:'|| l_proc, 10);
318: --
319: -- Issue a savepoint if operating in validation only mode
320: --
321: savepoint delete_WORKSHEET_FUND_SRC;

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

319: -- Issue a savepoint if operating in validation only mode
320: --
321: savepoint delete_WORKSHEET_FUND_SRC;
322: --
323: hr_utility.set_location(l_proc, 20);
324: --
325: -- Process Logic
326: --
327: l_object_version_number := p_object_version_number;

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

372: -- End of API User Hook for the after hook of delete_WORKSHEET_FUND_SRC
373: --
374: end;
375: --
376: hr_utility.set_location(l_proc, 60);
377: --
378: -- When in validation only mode raise the Validate_Enabled exception
379: --
380: if p_validate then

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

380: if p_validate then
381: raise hr_api.validate_enabled;
382: end if;
383: --
384: hr_utility.set_location(' Leaving:'||l_proc, 70);
385: --
386: exception
387: --
388: when hr_api.validate_enabled then

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

422: l_proc varchar2(72) := g_package||'lck';
423: --
424: begin
425: --
426: hr_utility.set_location('Entering:'|| l_proc, 10);
427: --
428: PQH_WFS_shd.lck
429: (
430: p_worksheet_fund_src_id => p_worksheet_fund_src_id

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

430: p_worksheet_fund_src_id => p_worksheet_fund_src_id
431: ,p_object_version_number => p_object_version_number
432: );
433: --
434: hr_utility.set_location(' Leaving:'||l_proc, 70);
435: --
436: end lck;
437: --
438: end pqh_WORKSHEET_FUND_SRCS_api;