DBA Data[Home] [Help]

APPS.HR_AHC_DEL dependencies on HR_API

Line 60: -- Delete the hr_api_hook_calls row.

56: hr_utility.set_location('Entering:'||l_proc, 5);
57: --
58: hr_ahc_shd.g_api_dml := true; -- Set the api dml status
59: --
60: -- Delete the hr_api_hook_calls row.
61: --
62: delete from hr_api_hook_calls
63: where api_hook_call_id = p_rec.api_hook_call_id;
64: --

Line 62: delete from hr_api_hook_calls

58: hr_ahc_shd.g_api_dml := true; -- Set the api dml status
59: --
60: -- Delete the hr_api_hook_calls row.
61: --
62: delete from hr_api_hook_calls
63: where api_hook_call_id = p_rec.api_hook_call_id;
64: --
65: hr_ahc_shd.g_api_dml := false; -- Unset the api dml status
66: --

Line 70: When hr_api.child_integrity_violated then

66: --
67: hr_utility.set_location(' Leaving:'||l_proc, 10);
68: --
69: Exception
70: When hr_api.child_integrity_violated then
71: -- Child integrity has been violated
72: hr_ahc_shd.g_api_dml := false; -- Unset the api dml status
73: hr_ahc_shd.constraint_error
74: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

70: When hr_api.child_integrity_violated then
71: -- Child integrity has been violated
72: hr_ahc_shd.g_api_dml := false; -- Unset the api dml status
73: hr_ahc_shd.constraint_error
74: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
75: When Others Then
76: hr_ahc_shd.g_api_dml := false; -- Unset the api dml status
77: Raise;
78: End delete_dml;