DBA Data[Home] [Help]

APPS.PER_PPC_INS dependencies on HR_API

Line 134: When hr_api.check_integrity_violated Then

130: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
131: --
132: hr_utility.set_location(' Leaving:'||l_proc, 10);
133: Exception
134: When hr_api.check_integrity_violated Then
135: -- A check constraint has been violated
136: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
137: per_ppc_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

134: When hr_api.check_integrity_violated Then
135: -- A check constraint has been violated
136: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
137: per_ppc_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When hr_api.parent_integrity_violated Then
140: -- Parent integrity has been violated
141: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
142: per_ppc_shd.constraint_error

Line 139: When hr_api.parent_integrity_violated Then

135: -- A check constraint has been violated
136: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
137: per_ppc_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When hr_api.parent_integrity_violated Then
140: -- Parent integrity has been violated
141: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
142: per_ppc_shd.constraint_error
143: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

139: When hr_api.parent_integrity_violated Then
140: -- Parent integrity has been violated
141: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
142: per_ppc_shd.constraint_error
143: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
144: When hr_api.unique_integrity_violated Then
145: -- Unique integrity has been violated
146: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
147: per_ppc_shd.constraint_error

Line 144: When hr_api.unique_integrity_violated Then

140: -- Parent integrity has been violated
141: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
142: per_ppc_shd.constraint_error
143: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
144: When hr_api.unique_integrity_violated Then
145: -- Unique integrity has been violated
146: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
147: per_ppc_shd.constraint_error
148: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

144: When hr_api.unique_integrity_violated Then
145: -- Unique integrity has been violated
146: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
147: per_ppc_shd.constraint_error
148: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
149: When Others Then
150: per_ppc_shd.g_api_dml := false; -- Unset the api dml status
151: Raise;
152: End insert_dml;

Line 291: when hr_api.cannot_find_prog_unit then

287: p_object_version_number => p_rec.object_version_number,
288: p_validation_strength => p_validation_strength
289: );
290: exception
291: when hr_api.cannot_find_prog_unit then
292: hr_api.cannot_find_prog_unit_error
293: (p_module_name => 'PER_PAY_PROPOSAL_COMPONENTS'
294: ,p_hook_type => 'AI'
295: );

Line 292: hr_api.cannot_find_prog_unit_error

288: p_validation_strength => p_validation_strength
289: );
290: exception
291: when hr_api.cannot_find_prog_unit then
292: hr_api.cannot_find_prog_unit_error
293: (p_module_name => 'PER_PAY_PROPOSAL_COMPONENTS'
294: ,p_hook_type => 'AI'
295: );
296: end;

Line 345: Raise HR_Api.Validate_Enabled;

341: --
342: -- If we are validating then raise the Validate_Enabled exception
343: --
344: If p_validate then
345: Raise HR_Api.Validate_Enabled;
346: End If;
347: --
348: hr_utility.set_location(' Leaving:'||l_proc, 10);
349: Exception

Line 350: When HR_Api.Validate_Enabled Then

346: End If;
347: --
348: hr_utility.set_location(' Leaving:'||l_proc, 10);
349: Exception
350: When HR_Api.Validate_Enabled Then
351: --
352: -- As the Validate_Enabled exception has been raised
353: -- we must rollback to the savepoint
354: --