DBA Data[Home] [Help]

APPS.IRC_OFFER_STATUS_HISTORY_API dependencies on HR_API

Line 72: when hr_api.cannot_find_prog_unit then

68: ,P_DECLINE_REASON => P_DECLINE_REASON
69: ,P_NOTE_TEXT => P_NOTE_TEXT
70: );
71: exception
72: when hr_api.cannot_find_prog_unit then
73: hr_api.cannot_find_prog_unit_error
74: (p_module_name => 'CREATE_OFFER_STATUS_HISTORY'
75: ,p_hook_type => 'BP'
76: );

Line 73: hr_api.cannot_find_prog_unit_error

69: ,P_NOTE_TEXT => P_NOTE_TEXT
70: );
71: exception
72: when hr_api.cannot_find_prog_unit then
73: hr_api.cannot_find_prog_unit_error
74: (p_module_name => 'CREATE_OFFER_STATUS_HISTORY'
75: ,p_hook_type => 'BP'
76: );
77: end;

Line 121: when hr_api.cannot_find_prog_unit then

117: ,P_OFFER_STATUS_HISTORY_ID => l_offer_status_history_id
118: ,P_OBJECT_VERSION_NUMBER => l_object_version_number
119: );
120: exception
121: when hr_api.cannot_find_prog_unit then
122: hr_api.cannot_find_prog_unit_error
123: (p_module_name => 'CREATE_OFFER_STATUS_HISTORY'
124: ,p_hook_type => 'AP'
125: );

Line 122: hr_api.cannot_find_prog_unit_error

118: ,P_OBJECT_VERSION_NUMBER => l_object_version_number
119: );
120: exception
121: when hr_api.cannot_find_prog_unit then
122: hr_api.cannot_find_prog_unit_error
123: (p_module_name => 'CREATE_OFFER_STATUS_HISTORY'
124: ,p_hook_type => 'AP'
125: );
126: end;

Line 131: raise hr_api.validate_enabled;

127: --
128: -- When in validation only mode raise the Validate_Enabled exception
129: --
130: if p_validate then
131: raise hr_api.validate_enabled;
132: end if;
133: --
134: -- Set all IN OUT and OUT parameters with out values
135: --

Line 140: when hr_api.validate_enabled then

136: p_offer_status_history_id := l_offer_status_history_id;
137: p_object_version_number := l_object_version_number;
138: --
139: exception
140: when hr_api.validate_enabled then
141: --
142: -- As the Validate_Enabled exception has been raised
143: -- we must rollback to the savepoint
144: --

Line 234: when hr_api.cannot_find_prog_unit then

230: ,P_DECLINE_REASON => P_DECLINE_REASON
231: ,P_NOTE_TEXT => P_NOTE_TEXT
232: );
233: exception
234: when hr_api.cannot_find_prog_unit then
235: hr_api.cannot_find_prog_unit_error
236: (p_module_name => 'UPDATE_OFFER_STATUS_HISTORY'
237: ,p_hook_type => 'BP'
238: );

Line 235: hr_api.cannot_find_prog_unit_error

231: ,P_NOTE_TEXT => P_NOTE_TEXT
232: );
233: exception
234: when hr_api.cannot_find_prog_unit then
235: hr_api.cannot_find_prog_unit_error
236: (p_module_name => 'UPDATE_OFFER_STATUS_HISTORY'
237: ,p_hook_type => 'BP'
238: );
239: end;

Line 271: when hr_api.cannot_find_prog_unit then

267: ,P_NOTE_TEXT => P_NOTE_TEXT
268: ,P_OBJECT_VERSION_NUMBER => l_object_version_number
269: );
270: exception
271: when hr_api.cannot_find_prog_unit then
272: hr_api.cannot_find_prog_unit_error
273: (p_module_name => 'UPDATE_OFFER_STATUS_HISTORY'
274: ,p_hook_type => 'AP'
275: );

Line 272: hr_api.cannot_find_prog_unit_error

268: ,P_OBJECT_VERSION_NUMBER => l_object_version_number
269: );
270: exception
271: when hr_api.cannot_find_prog_unit then
272: hr_api.cannot_find_prog_unit_error
273: (p_module_name => 'UPDATE_OFFER_STATUS_HISTORY'
274: ,p_hook_type => 'AP'
275: );
276: end;

Line 281: raise hr_api.validate_enabled;

277: --
278: -- When in validation only mode raise the Validate_Enabled exception
279: --
280: if p_validate then
281: raise hr_api.validate_enabled;
282: end if;
283: --
284: -- Set all IN OUT and OUT parameters with out values
285: --

Line 290: when hr_api.validate_enabled then

286: p_object_version_number := l_object_version_number;
287: --
288: hr_utility.set_location(' Leaving:'||l_proc, 70);
289: exception
290: when hr_api.validate_enabled then
291: --
292: -- As the Validate_Enabled exception has been raised
293: -- we must rollback to the savepoint
294: --

Line 361: when hr_api.cannot_find_prog_unit then

357: ( P_OBJECT_VERSION_NUMBER => c_rec.object_version_number
358: ,P_OFFER_STATUS_HISTORY_ID => c_rec.offer_status_history_id
359: );
360: exception
361: when hr_api.cannot_find_prog_unit then
362: hr_api.cannot_find_prog_unit_error
363: (p_module_name => 'DELETE_OFFER_STATUS_HISTORY'
364: ,p_hook_type => 'BP'
365: );

Line 362: hr_api.cannot_find_prog_unit_error

358: ,P_OFFER_STATUS_HISTORY_ID => c_rec.offer_status_history_id
359: );
360: exception
361: when hr_api.cannot_find_prog_unit then
362: hr_api.cannot_find_prog_unit_error
363: (p_module_name => 'DELETE_OFFER_STATUS_HISTORY'
364: ,p_hook_type => 'BP'
365: );
366: end;

Line 383: when hr_api.cannot_find_prog_unit then

379: ( P_OBJECT_VERSION_NUMBER => c_rec.object_version_number
380: ,P_OFFER_STATUS_HISTORY_ID => c_rec.offer_status_history_id
381: );
382: exception
383: when hr_api.cannot_find_prog_unit then
384: hr_api.cannot_find_prog_unit_error
385: (p_module_name => 'DELETE_OFFER_STATUS_HISTORY'
386: ,p_hook_type => 'AP'
387: );

Line 384: hr_api.cannot_find_prog_unit_error

380: ,P_OFFER_STATUS_HISTORY_ID => c_rec.offer_status_history_id
381: );
382: exception
383: when hr_api.cannot_find_prog_unit then
384: hr_api.cannot_find_prog_unit_error
385: (p_module_name => 'DELETE_OFFER_STATUS_HISTORY'
386: ,p_hook_type => 'AP'
387: );
388: end;

Line 393: raise hr_api.validate_enabled;

389: --
390: -- When in validation only mode raise the Validate_Enabled exception
391: --
392: if p_validate then
393: raise hr_api.validate_enabled;
394: end if;
395: --
396: hr_utility.set_location(' Leaving:'||l_proc, 70);
397: end loop;

Line 399: when hr_api.validate_enabled then

395: --
396: hr_utility.set_location(' Leaving:'||l_proc, 70);
397: end loop;
398: exception
399: when hr_api.validate_enabled then
400: --
401: -- As the Validate_Enabled exception has been raised
402: -- we must rollback to the savepoint
403: --