DBA Data[Home] [Help]

APPS.GHR_ELEMENT_ENTRY_API dependencies on HR_UTILITY

Line 105: hr_utility.set_location('Entering:'|| l_proc, 50);

101: l_proc varchar2(72) := g_package||'create_element_entry';
102: --
103: --
104: BEGIN
105: hr_utility.set_location('Entering:'|| l_proc, 50);
106: --
107: -- Issue a savepoint if operating in validation only mode.
108: --
109: SAVEPOINT ghr_create_element_entry;

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

106: --
107: -- Issue a savepoint if operating in validation only mode.
108: --
109: SAVEPOINT ghr_create_element_entry;
110: hr_utility.set_location(l_proc, 60);
111: --
112: ghr_session.set_session_var_for_core
113: (p_effective_date => p_effective_date
114: );

Line 116: hr_utility.set_location(l_proc, 350);

112: ghr_session.set_session_var_for_core
113: (p_effective_date => p_effective_date
114: );
115: --
116: hr_utility.set_location(l_proc, 350);
117: py_element_entry_api.create_element_entry
118: (
119: --p_validate => p_validate,
120: p_effective_date => p_effective_date,

Line 192: hr_utility.set_location(l_proc, 800);

188: p_object_version_number => p_object_version_number,
189: p_create_warning => p_create_warning
190: );
191: --
192: hr_utility.set_location(l_proc, 800);
193: --
194: ghr_history_api.post_update_process;
195:
196: IF p_validate THEN

Line 203: hr_utility.set_location(' Leaving:'||l_proc, 11);

199: --
200: -- Set all output arguments
201: --
202:
203: hr_utility.set_location(' Leaving:'||l_proc, 11);
204: EXCEPTION
205: WHEN hr_api.validate_enabled THEN
206: --
207: -- As the Validate_Enabled exception has been raised

Line 220: hr_utility.set_location(' Leaving:'||l_proc, 900);

216: p_element_entry_id := null;
217: p_object_version_number := null;
218: p_effective_start_date := null;
219: p_effective_end_date := null;
220: hr_utility.set_location(' Leaving:'||l_proc, 900);
221:
222: When others then
223: ROLLBACK TO ghr_create_element_entry;
224: raise;

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

314: l_creator_type pay_element_entries_f.creator_type%TYPE;
315: l_creator_id pay_element_entries_f.creator_id%TYPE;
316: --
317: BEGIN
318: hr_utility.set_location('Entering:'|| l_proc, 5);
319: --
320: -- Store initial values for IN OUT parameters
321: --
322: l_object_version_number := p_object_version_number;

Line 327: hr_utility.set_location(l_proc, 6);

323: --
324: -- Issue a savepoint if operating in validation only mode.
325: --
326: SAVEPOINT ghr_update_element_entry;
327: hr_utility.set_location(l_proc, 6);
328: --
329: --
330:
331: ghr_session.set_session_var_for_core

Line 408: hr_utility.set_location(l_proc, 8);

404: p_effective_end_date => p_effective_end_date,
405: p_update_warning => p_update_warning
406: );
407: --
408: hr_utility.set_location(l_proc, 8);
409: --
410: ghr_history_api.post_update_process;
411:
412: -- When in validation only mode raise the Validate_Enabled exception

Line 422: hr_utility.set_location(' Leaving:'||l_proc, 11);

418: --
419: -- Set all output arguments
420: --
421: --
422: hr_utility.set_location(' Leaving:'||l_proc, 11);
423: EXCEPTION
424: WHEN hr_api.validate_enabled THEN
425: --
426: -- As the Validate_Enabled exception has been raised

Line 441: hr_utility.set_location(' Leaving:'||l_proc, 12);

437: p_object_version_number := l_object_version_number;
438: p_effective_start_date := NULL;
439: p_effective_end_date := NULL;
440:
441: hr_utility.set_location(' Leaving:'||l_proc, 12);
442: When others then
443: ROLLBACK TO ghr_update_element_entry;
444: raise;
445: END update_element_entry;