DBA Data[Home] [Help]

APPS.PAY_APP_INS dependencies on HR_API

Line 114: When hr_api.check_integrity_violated Then

110: pay_app_shd.g_api_dml := false; -- Unset the api dml status
111: --
112: hr_utility.set_location(' Leaving:'||l_proc, 10);
113: Exception
114: When hr_api.check_integrity_violated Then
115: -- A check constraint has been violated
116: pay_app_shd.g_api_dml := false; -- Unset the api dml status
117: pay_app_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

114: When hr_api.check_integrity_violated Then
115: -- A check constraint has been violated
116: pay_app_shd.g_api_dml := false; -- Unset the api dml status
117: pay_app_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: pay_app_shd.g_api_dml := false; -- Unset the api dml status
122: pay_app_shd.constraint_error

Line 119: When hr_api.parent_integrity_violated Then

115: -- A check constraint has been violated
116: pay_app_shd.g_api_dml := false; -- Unset the api dml status
117: pay_app_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: pay_app_shd.g_api_dml := false; -- Unset the api dml status
122: pay_app_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: pay_app_shd.g_api_dml := false; -- Unset the api dml status
122: pay_app_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: pay_app_shd.g_api_dml := false; -- Unset the api dml status
127: pay_app_shd.constraint_error

Line 124: When hr_api.unique_integrity_violated Then

120: -- Parent integrity has been violated
121: pay_app_shd.g_api_dml := false; -- Unset the api dml status
122: pay_app_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: pay_app_shd.g_api_dml := false; -- Unset the api dml status
127: pay_app_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: pay_app_shd.g_api_dml := false; -- Unset the api dml status
127: pay_app_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When Others Then
130: pay_app_shd.g_api_dml := false; -- Unset the api dml status
131: Raise;
132: End insert_dml;