DBA Data[Home] [Help]

APPS.PQH_DFLT_BUDGET_ELEMENTS_API dependencies on HR_UTILITY

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

25: l_object_version_number pqh_dflt_budget_elements.object_version_number%TYPE;
26: --
27: begin
28: --
29: hr_utility.set_location('Entering:'|| l_proc, 10);
30: --
31: -- Issue a savepoint if operating in validation only mode
32: --
33: savepoint create_dflt_budget_element;

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

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

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

89: -- End of API User Hook for the after hook of create_dflt_budget_element
90: --
91: end;
92: --
93: hr_utility.set_location(l_proc, 60);
94: --
95: -- When in validation only mode raise the Validate_Enabled exception
96: --
97: if p_validate then

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

102: --
103: p_dflt_budget_element_id := l_dflt_budget_element_id;
104: p_object_version_number := l_object_version_number;
105: --
106: hr_utility.set_location(' Leaving:'||l_proc, 70);
107: --
108: exception
109: --
110: when hr_api.validate_enabled then

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

119: -- when validation only mode is being used.)
120: --
121: p_dflt_budget_element_id := null;
122: p_object_version_number := null;
123: hr_utility.set_location(' Leaving:'||l_proc, 80);
124: --
125: when others then
126: p_dflt_budget_element_id := null;
127: p_object_version_number := null;

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

151: l_object_version_number pqh_dflt_budget_elements.object_version_number%TYPE;
152: --
153: begin
154: --
155: hr_utility.set_location('Entering:'|| l_proc, 10);
156: --
157: -- Issue a savepoint if operating in validation only mode
158: --
159: savepoint update_dflt_budget_element;

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

157: -- Issue a savepoint if operating in validation only mode
158: --
159: savepoint update_dflt_budget_element;
160: --
161: hr_utility.set_location(l_proc, 20);
162: --
163: -- Process Logic
164: --
165: l_object_version_number := p_object_version_number;

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

218: -- End of API User Hook for the after hook of update_dflt_budget_element
219: --
220: end;
221: --
222: hr_utility.set_location(l_proc, 60);
223: --
224: -- When in validation only mode raise the Validate_Enabled exception
225: --
226: if p_validate then

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

230: -- Set all output arguments
231: --
232: p_object_version_number := l_object_version_number;
233: --
234: hr_utility.set_location(' Leaving:'||l_proc, 70);
235: --
236: exception
237: --
238: when hr_api.validate_enabled then

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

245: -- Only set output warning arguments
246: -- (Any key or derived arguments must be set to null
247: -- when validation only mode is being used.)
248: --
249: hr_utility.set_location(' Leaving:'||l_proc, 80);
250: --
251: when others then
252: p_object_version_number := l_object_version_number;
253: --

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

273: l_object_version_number pqh_dflt_budget_elements.object_version_number%TYPE;
274: --
275: begin
276: --
277: hr_utility.set_location('Entering:'|| l_proc, 10);
278: --
279: -- Issue a savepoint if operating in validation only mode
280: --
281: savepoint delete_dflt_budget_element;

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

279: -- Issue a savepoint if operating in validation only mode
280: --
281: savepoint delete_dflt_budget_element;
282: --
283: hr_utility.set_location(l_proc, 20);
284: --
285: -- Process Logic
286: --
287: l_object_version_number := p_object_version_number;

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

332: -- End of API User Hook for the after hook of delete_dflt_budget_element
333: --
334: end;
335: --
336: hr_utility.set_location(l_proc, 60);
337: --
338: -- When in validation only mode raise the Validate_Enabled exception
339: --
340: if p_validate then

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

340: if p_validate then
341: raise hr_api.validate_enabled;
342: end if;
343: --
344: hr_utility.set_location(' Leaving:'||l_proc, 70);
345: --
346: exception
347: --
348: when hr_api.validate_enabled then

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

382: l_proc varchar2(72) := g_package||'lck';
383: --
384: begin
385: --
386: hr_utility.set_location('Entering:'|| l_proc, 10);
387: --
388: pqh_del_shd.lck
389: (
390: p_dflt_budget_element_id => p_dflt_budget_element_id

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

390: p_dflt_budget_element_id => p_dflt_budget_element_id
391: ,p_object_version_number => p_object_version_number
392: );
393: --
394: hr_utility.set_location(' Leaving:'||l_proc, 70);
395: --
396: end lck;
397: --
398: end pqh_dflt_budget_elements_api;