DBA Data[Home] [Help]

APPS.AME_APPROVER_TYPE_API dependencies on HR_UTILITY

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

28: l_swi_call boolean;
29: l_swi_package_name varchar2(30) := 'ame_approver_type_swi';
30: --
31: begin
32: hr_utility.set_location('Entering:'|| l_proc, 10);
33: --
34: -- Issue a savepoint
35: --
36: savepoint create_ame_approver_type;

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

97: p_start_date := l_start_date;
98: p_end_date := l_end_date;
99:
100: --
101: hr_utility.set_location(' Leaving:'||l_proc, 70);
102: exception
103: when hr_api.validate_enabled then
104: --
105: -- As the Validate_Enabled exception has been raised

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

114: p_approver_type_id := null;
115: p_object_version_number := null;
116: p_start_date := null;
117: p_end_date := null;
118: hr_utility.set_location(' Leaving:'||l_proc, 80);
119: when others then
120: --
121: -- A validation or unexpected error has occured
122: --

Line 133: hr_utility.set_location(' Leaving:'||l_proc, 90);

129: p_object_version_number := null;
130: p_start_date := null;
131: p_end_date := null;
132:
133: hr_utility.set_location(' Leaving:'||l_proc, 90);
134: raise;
135: end create_ame_approver_type;
136: --
137: -- ----------------------------------------------------------------------------

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

181: l_config_count number;
182: l_rule_usage_count number;
183: --
184: begin
185: hr_utility.set_location('Entering:'|| l_proc, 10);
186: -- Issue a savepoint.
187: --
188: -- Set the effective date to the sysdate
189: l_effective_date := sysdate;

Line 247: hr_utility.set_location(' Leaving:'||l_proc, 50);

243: --
244: p_object_version_number := l_apt_object_version_number;
245: p_start_date := l_apt_start_date;
246: p_end_date := l_apt_end_date;
247: hr_utility.set_location(' Leaving:'||l_proc, 50);
248: exception
249: when hr_api.validate_enabled then
250: --
251: -- As the Validate_Enabled exception has been raised

Line 260: hr_utility.set_location(' Leaving:'||l_proc, 60);

256: p_object_version_number := null;
257: p_start_date := null;
258: p_end_date := null;
259: --
260: hr_utility.set_location(' Leaving:'||l_proc, 60);
261: when others then
262: --
263: -- A validation or unexpected error has occurred
264: p_object_version_number := null;

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

264: p_object_version_number := null;
265: p_start_date := null;
266: p_end_date := null;
267: --
268: hr_utility.set_location(' Leaving:'||l_proc, 70);
269: ROLLBACK TO delete_ame_approver_type;
270: raise;
271: --
272: -- End of fix.