DBA Data[Home] [Help]

APPS.GHR_COMPLAINT_PEOPLE_API dependencies on HR_API

Line 54: when hr_api.cannot_find_prog_unit then

50: ,p_start_date => p_start_date
51: ,p_end_date => p_end_date
52: );
53: exception
54: when hr_api.cannot_find_prog_unit then
55: hr_api.cannot_find_prog_unit_error
56: (p_module_name => 'create_compl_person'
57: ,p_hook_type => 'BP'
58: );

Line 55: hr_api.cannot_find_prog_unit_error

51: ,p_end_date => p_end_date
52: );
53: exception
54: when hr_api.cannot_find_prog_unit then
55: hr_api.cannot_find_prog_unit_error
56: (p_module_name => 'create_compl_person'
57: ,p_hook_type => 'BP'
58: );
59: end;

Line 97: when hr_api.cannot_find_prog_unit then

93: ,p_compl_person_id => l_compl_person_id
94: ,p_object_version_number => l_object_version_number
95: );
96: exception
97: when hr_api.cannot_find_prog_unit then
98: hr_api.cannot_find_prog_unit_error
99: (p_module_name => 'create_compl_person'
100: ,p_hook_type => 'AP'
101: );

Line 98: hr_api.cannot_find_prog_unit_error

94: ,p_object_version_number => l_object_version_number
95: );
96: exception
97: when hr_api.cannot_find_prog_unit then
98: hr_api.cannot_find_prog_unit_error
99: (p_module_name => 'create_compl_person'
100: ,p_hook_type => 'AP'
101: );
102: end;

Line 107: raise hr_api.validate_enabled;

103: --
104: -- When in validation only mode raise the Validate_Enabled exception
105: --
106: if p_validate then
107: raise hr_api.validate_enabled;
108: end if;
109: --
110: -- Set all output arguments
111: --

Line 117: when hr_api.validate_enabled then

113: p_object_version_number := l_object_version_number;
114: --
115: hr_utility.set_location(' Leaving:'||l_proc, 70);
116: exception
117: when hr_api.validate_enabled then
118: --
119: -- As the Validate_Enabled exception has been raised
120: -- we must rollback to the savepoint
121: --

Line 152: ,p_person_id in number default hr_api.g_number

148: (p_validate in boolean default false
149: ,p_effective_date in date
150: ,p_compl_person_id in number
151: ,p_object_version_number in out nocopy number
152: ,p_person_id in number default hr_api.g_number
153: ,p_complaint_id in number default hr_api.g_number
154: ,p_role_code in varchar2 default hr_api.g_varchar2
155: ,p_start_date in date default hr_api.g_date
156: ,p_end_date in date default hr_api.g_date

Line 153: ,p_complaint_id in number default hr_api.g_number

149: ,p_effective_date in date
150: ,p_compl_person_id in number
151: ,p_object_version_number in out nocopy number
152: ,p_person_id in number default hr_api.g_number
153: ,p_complaint_id in number default hr_api.g_number
154: ,p_role_code in varchar2 default hr_api.g_varchar2
155: ,p_start_date in date default hr_api.g_date
156: ,p_end_date in date default hr_api.g_date
157: )

Line 154: ,p_role_code in varchar2 default hr_api.g_varchar2

150: ,p_compl_person_id in number
151: ,p_object_version_number in out nocopy number
152: ,p_person_id in number default hr_api.g_number
153: ,p_complaint_id in number default hr_api.g_number
154: ,p_role_code in varchar2 default hr_api.g_varchar2
155: ,p_start_date in date default hr_api.g_date
156: ,p_end_date in date default hr_api.g_date
157: )
158:

Line 155: ,p_start_date in date default hr_api.g_date

151: ,p_object_version_number in out nocopy number
152: ,p_person_id in number default hr_api.g_number
153: ,p_complaint_id in number default hr_api.g_number
154: ,p_role_code in varchar2 default hr_api.g_varchar2
155: ,p_start_date in date default hr_api.g_date
156: ,p_end_date in date default hr_api.g_date
157: )
158:
159: is

Line 156: ,p_end_date in date default hr_api.g_date

152: ,p_person_id in number default hr_api.g_number
153: ,p_complaint_id in number default hr_api.g_number
154: ,p_role_code in varchar2 default hr_api.g_varchar2
155: ,p_start_date in date default hr_api.g_date
156: ,p_end_date in date default hr_api.g_date
157: )
158:
159: is
160: l_proc varchar2(72) := g_package||'update_compl_person';

Line 190: when hr_api.cannot_find_prog_unit then

186: ,p_compl_person_id => p_compl_person_id
187: ,p_object_version_number => p_object_version_number
188: );
189: exception
190: when hr_api.cannot_find_prog_unit then
191: hr_api.cannot_find_prog_unit_error
192: (p_module_name => 'update_compl_person'
193: ,p_hook_type => 'BP'
194: );

Line 191: hr_api.cannot_find_prog_unit_error

187: ,p_object_version_number => p_object_version_number
188: );
189: exception
190: when hr_api.cannot_find_prog_unit then
191: hr_api.cannot_find_prog_unit_error
192: (p_module_name => 'update_compl_person'
193: ,p_hook_type => 'BP'
194: );
195: end;

Line 230: when hr_api.cannot_find_prog_unit then

226: ,p_compl_person_id => p_compl_person_id
227: ,p_object_version_number => l_object_version_number
228: );
229: exception
230: when hr_api.cannot_find_prog_unit then
231: hr_api.cannot_find_prog_unit_error
232: (p_module_name => 'update_compl_person'
233: ,p_hook_type => 'AP'
234: );

Line 231: hr_api.cannot_find_prog_unit_error

227: ,p_object_version_number => l_object_version_number
228: );
229: exception
230: when hr_api.cannot_find_prog_unit then
231: hr_api.cannot_find_prog_unit_error
232: (p_module_name => 'update_compl_person'
233: ,p_hook_type => 'AP'
234: );
235: end;

Line 240: raise hr_api.validate_enabled;

236: --
237: -- When in validation only mode raise the Validate_Enabled exception
238: --
239: if p_validate then
240: raise hr_api.validate_enabled;
241: end if;
242: --
243: -- Set all output arguments
244: --

Line 249: when hr_api.validate_enabled then

245: p_object_version_number := l_object_version_number;
246: --
247: hr_utility.set_location(' Leaving:'||l_proc, 70);
248: exception
249: when hr_api.validate_enabled then
250: --
251: -- As the Validate_Enabled exception has been raised
252: -- we must rollback to the savepoint
253: --

Line 309: when hr_api.cannot_find_prog_unit then

305: (p_compl_person_id => p_compl_person_id
306: ,p_object_version_number => p_object_version_number
307: );
308: exception
309: when hr_api.cannot_find_prog_unit then
310: hr_api.cannot_find_prog_unit_error
311: (p_module_name => 'delete_compl_person'
312: ,p_hook_type => 'BP'
313: );

Line 310: hr_api.cannot_find_prog_unit_error

306: ,p_object_version_number => p_object_version_number
307: );
308: exception
309: when hr_api.cannot_find_prog_unit then
310: hr_api.cannot_find_prog_unit_error
311: (p_module_name => 'delete_compl_person'
312: ,p_hook_type => 'BP'
313: );
314: end;

Line 334: when hr_api.cannot_find_prog_unit then

330: (p_compl_person_id => p_compl_person_id
331: ,p_object_version_number => p_object_version_number
332: );
333: exception
334: when hr_api.cannot_find_prog_unit then
335: hr_api.cannot_find_prog_unit_error
336: (p_module_name => 'delete_compl_person'
337: ,p_hook_type => 'AP'
338: );

Line 335: hr_api.cannot_find_prog_unit_error

331: ,p_object_version_number => p_object_version_number
332: );
333: exception
334: when hr_api.cannot_find_prog_unit then
335: hr_api.cannot_find_prog_unit_error
336: (p_module_name => 'delete_compl_person'
337: ,p_hook_type => 'AP'
338: );
339: end;

Line 344: raise hr_api.validate_enabled;

340: --
341: -- When in validation only mode raise the Validate_Enabled exception
342: --
343: if p_validate then
344: raise hr_api.validate_enabled;
345: end if;
346: --
347: hr_utility.set_location(' Leaving:'||l_proc, 11);
348: exception

Line 349: when hr_api.validate_enabled then

345: end if;
346: --
347: hr_utility.set_location(' Leaving:'||l_proc, 11);
348: exception
349: when hr_api.validate_enabled then
350: -- we must rollback to the savepoint
351: --
352: ROLLBACK TO delete_compl_person;
353: --