DBA Data[Home] [Help]

APPS.IRC_APL_PRFL_SNAPSHOTS_API dependencies on HR_API

Line 54: when hr_api.cannot_find_prog_unit then

50: (p_effective_date => l_effective_date
51: ,p_person_id => p_person_id
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_applicant_snapshot'
57: ,p_hook_type => 'BP'
58: );

Line 55: hr_api.cannot_find_prog_unit_error

51: ,p_person_id => p_person_id
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_applicant_snapshot'
57: ,p_hook_type => 'BP'
58: );
59: end;

Line 86: when hr_api.cannot_find_prog_unit then

82: ,p_profile_snapshot_id => l_profile_snapshot_id
83: ,p_object_version_number => l_object_version_number
84: );
85: exception
86: when hr_api.cannot_find_prog_unit then
87: hr_api.cannot_find_prog_unit_error
88: (p_module_name => 'create_applicant_snapshot'
89: ,p_hook_type => 'AP'
90: );

Line 87: hr_api.cannot_find_prog_unit_error

83: ,p_object_version_number => l_object_version_number
84: );
85: exception
86: when hr_api.cannot_find_prog_unit then
87: hr_api.cannot_find_prog_unit_error
88: (p_module_name => 'create_applicant_snapshot'
89: ,p_hook_type => 'AP'
90: );
91: end;

Line 96: raise hr_api.validate_enabled;

92: --
93: -- When in validation only mode raise the Validate_Enabled exception
94: --
95: if p_validate then
96: raise hr_api.validate_enabled;
97: end if;
98: --
99: -- Set all IN OUT and OUT parameters with out values
100: --

Line 106: when hr_api.validate_enabled then

102: p_object_version_number := l_object_version_number;
103: --
104: hr_utility.set_location(' Leaving:'||l_proc, 70);
105: exception
106: when hr_api.validate_enabled then
107: --
108: -- As the Validate_Enabled exception has been raised
109: -- we must rollback to the savepoint
110: --

Line 187: when hr_api.cannot_find_prog_unit then

183: ,p_profile_snapshot_id => l_profile_snapshot_id
184: ,p_object_version_number => l_object_version_number
185: );
186: exception
187: when hr_api.cannot_find_prog_unit then
188: hr_api.cannot_find_prog_unit_error
189: (p_module_name => 'update_applicant_snapshot'
190: ,p_hook_type => 'BP'
191: );

Line 188: hr_api.cannot_find_prog_unit_error

184: ,p_object_version_number => l_object_version_number
185: );
186: exception
187: when hr_api.cannot_find_prog_unit then
188: hr_api.cannot_find_prog_unit_error
189: (p_module_name => 'update_applicant_snapshot'
190: ,p_hook_type => 'BP'
191: );
192: end;

Line 219: when hr_api.cannot_find_prog_unit then

215: ,p_profile_snapshot_id => l_profile_snapshot_id
216: ,p_object_version_number => l_object_version_number
217: );
218: exception
219: when hr_api.cannot_find_prog_unit then
220: hr_api.cannot_find_prog_unit_error
221: (p_module_name => 'update_applicant_snapshot'
222: ,p_hook_type => 'AP'
223: );

Line 220: hr_api.cannot_find_prog_unit_error

216: ,p_object_version_number => l_object_version_number
217: );
218: exception
219: when hr_api.cannot_find_prog_unit then
220: hr_api.cannot_find_prog_unit_error
221: (p_module_name => 'update_applicant_snapshot'
222: ,p_hook_type => 'AP'
223: );
224: end;

Line 229: raise hr_api.validate_enabled;

225: --
226: -- When in validation only mode raise the Validate_Enabled exception
227: --
228: if p_validate then
229: raise hr_api.validate_enabled;
230: end if;
231: --
232: -- Set all IN OUT and OUT parameters with out values
233: --

Line 239: when hr_api.validate_enabled then

235: p_object_version_number := l_object_version_number;
236: --
237: hr_utility.set_location(' Leaving:'||l_proc, 70);
238: exception
239: when hr_api.validate_enabled then
240: --
241: -- As the Validate_Enabled exception has been raised
242: -- we must rollback to the savepoint
243: --

Line 322: when hr_api.cannot_find_prog_unit then

318: ,p_profile_snapshot_id => l_profile_snapshot_id
319: ,p_object_version_number => l_object_version_number
320: );
321: exception
322: when hr_api.cannot_find_prog_unit then
323: hr_api.cannot_find_prog_unit_error
324: (p_module_name => 'delete_applicant_snapshot'
325: ,p_hook_type => 'BP'
326: );

Line 323: hr_api.cannot_find_prog_unit_error

319: ,p_object_version_number => l_object_version_number
320: );
321: exception
322: when hr_api.cannot_find_prog_unit then
323: hr_api.cannot_find_prog_unit_error
324: (p_module_name => 'delete_applicant_snapshot'
325: ,p_hook_type => 'BP'
326: );
327: end;

Line 353: when hr_api.cannot_find_prog_unit then

349: ,p_profile_snapshot_id => l_profile_snapshot_id
350: ,p_object_version_number => l_object_version_number
351: );
352: exception
353: when hr_api.cannot_find_prog_unit then
354: hr_api.cannot_find_prog_unit_error
355: (p_module_name => 'delete_applicant_snapshot'
356: ,p_hook_type => 'AP'
357: );

Line 354: hr_api.cannot_find_prog_unit_error

350: ,p_object_version_number => l_object_version_number
351: );
352: exception
353: when hr_api.cannot_find_prog_unit then
354: hr_api.cannot_find_prog_unit_error
355: (p_module_name => 'delete_applicant_snapshot'
356: ,p_hook_type => 'AP'
357: );
358: end;

Line 363: raise hr_api.validate_enabled;

359: --
360: -- When in validation only mode raise the Validate_Enabled exception
361: --
362: if p_validate then
363: raise hr_api.validate_enabled;
364: end if;
365: --
366: hr_utility.set_location(' Leaving:'||l_proc, 70);
367: --

Line 369: when hr_api.validate_enabled then

365: --
366: hr_utility.set_location(' Leaving:'||l_proc, 70);
367: --
368: exception
369: when hr_api.validate_enabled then
370: --
371: -- As the Validate_Enabled exception has been raised
372: -- we must rollback to the savepoint
373: --