DBA Data[Home] [Help]

APPS.PER_PER_INS dependencies on HR_API

Line 519: When hr_api.check_integrity_violated Then

515: per_per_shd.g_api_dml := false; -- Unset the api dml status
516: hr_utility.set_location(' Leaving:'||l_proc, 15);
517: --
518: Exception
519: When hr_api.check_integrity_violated Then
520: -- A check constraint has been violated
521: per_per_shd.g_api_dml := false; -- Unset the api dml status
522: per_per_shd.constraint_error
523: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 523: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

519: When hr_api.check_integrity_violated Then
520: -- A check constraint has been violated
521: per_per_shd.g_api_dml := false; -- Unset the api dml status
522: per_per_shd.constraint_error
523: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
524: When hr_api.unique_integrity_violated Then
525: -- Unique integrity has been violated
526: per_per_shd.g_api_dml := false; -- Unset the api dml status
527: per_per_shd.constraint_error

Line 524: When hr_api.unique_integrity_violated Then

520: -- A check constraint has been violated
521: per_per_shd.g_api_dml := false; -- Unset the api dml status
522: per_per_shd.constraint_error
523: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
524: When hr_api.unique_integrity_violated Then
525: -- Unique integrity has been violated
526: per_per_shd.g_api_dml := false; -- Unset the api dml status
527: per_per_shd.constraint_error
528: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 528: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

524: When hr_api.unique_integrity_violated Then
525: -- Unique integrity has been violated
526: per_per_shd.g_api_dml := false; -- Unset the api dml status
527: per_per_shd.constraint_error
528: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
529: When Others Then
530: per_per_shd.g_api_dml := false; -- Unset the api dml status
531: Raise;
532: End dt_insert_dml;

Line 928: when hr_api.cannot_find_prog_unit then

924: ,p_local_name => p_rec.local_name
925: ,p_object_version_number => p_rec.object_version_number
926: );
927: exception
928: when hr_api.cannot_find_prog_unit then
929: hr_api.cannot_find_prog_unit_error
930: (p_module_name => 'per_all_people_f'
931: ,p_hook_type => 'AI'
932: );

Line 929: hr_api.cannot_find_prog_unit_error

925: ,p_object_version_number => p_rec.object_version_number
926: );
927: exception
928: when hr_api.cannot_find_prog_unit then
929: hr_api.cannot_find_prog_unit_error
930: (p_module_name => 'per_all_people_f'
931: ,p_hook_type => 'AI'
932: );
933: end;

Line 977: -- another user. This will raise the HR_Api.Object_Locked exception.

973: --
974: -- Post Failure:
975: -- The Lck process can fail for:
976: -- 1) When attempting to lock the row the row could already be locked by
977: -- another user. This will raise the HR_Api.Object_Locked exception.
978: -- 2) When attempting to the lock the parent which doesn't exist.
979: -- For the entity to be locked the parent must exist!
980: --
981: -- Developer Implementation Notes:

Line 1228: Raise HR_Api.Validate_Enabled;

1224: -- If we are validating then raise the Validate_Enabled exception
1225: hr_multi_message.end_validation_set;
1226: --
1227: If p_validate then
1228: Raise HR_Api.Validate_Enabled;
1229: End If;
1230: --
1231: -- Set the out arguments
1232: --

Line 1247: When HR_Api.Validate_Enabled Then

1243: end if;
1244: --
1245: hr_utility.set_location(' Leaving:'||l_proc, 10);
1246: Exception
1247: When HR_Api.Validate_Enabled Then
1248: --
1249: -- As the Validate_Enabled exception has been raised
1250: -- we must rollback to the savepoint
1251: --