DBA Data[Home] [Help]

APPS.PQH_BUDGET_FUND_SRCS_API dependencies on HR_UTILITY

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

30: l_object_version_number pqh_budget_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_budget_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_budget_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_budget_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_budget_fund_src_id := l_budget_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_budget_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_budget_fund_src_id := null;
147: p_object_version_number := null;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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