DBA Data[Home] [Help]

APPS.PER_ZA_QUA_INS dependencies on PER_QUA_SHD

Line 61: per_qua_shd.g_api_dml := true; -- Set the api dml status

57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 5);
59:
60: --
61: per_qua_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_za_formal_qualifications
64: --
65: insert into per_za_formal_qualifications

Line 82: per_qua_shd.g_api_dml := false; -- Unset the api dml status

78: p_rec.registration_date,
79: p_rec.registration_number
80: );
81: --
82: per_qua_shd.g_api_dml := false; -- Unset the api dml status
83: --
84: hr_utility.set_location(' Leaving:'||l_proc, 10);
85: Exception
86: When hr_api.check_integrity_violated Then

Line 88: per_qua_shd.g_api_dml := false; -- Unset the api dml status

84: hr_utility.set_location(' Leaving:'||l_proc, 10);
85: Exception
86: When hr_api.check_integrity_violated Then
87: -- A check constraint has been violated
88: per_qua_shd.g_api_dml := false; -- Unset the api dml status
89: per_qua_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated

Line 89: per_qua_shd.constraint_error

85: Exception
86: When hr_api.check_integrity_violated Then
87: -- A check constraint has been violated
88: per_qua_shd.g_api_dml := false; -- Unset the api dml status
89: per_qua_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated
93: per_qua_shd.g_api_dml := false; -- Unset the api dml status

Line 93: per_qua_shd.g_api_dml := false; -- Unset the api dml status

89: per_qua_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated
93: per_qua_shd.g_api_dml := false; -- Unset the api dml status
94: per_qua_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated

Line 94: per_qua_shd.constraint_error

90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated
93: per_qua_shd.g_api_dml := false; -- Unset the api dml status
94: per_qua_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated
98: per_qua_shd.g_api_dml := false; -- Unset the api dml status

Line 98: per_qua_shd.g_api_dml := false; -- Unset the api dml status

94: per_qua_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated
98: per_qua_shd.g_api_dml := false; -- Unset the api dml status
99: per_qua_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then
102: per_qua_shd.g_api_dml := false; -- Unset the api dml status

Line 99: per_qua_shd.constraint_error

95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated
98: per_qua_shd.g_api_dml := false; -- Unset the api dml status
99: per_qua_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then
102: per_qua_shd.g_api_dml := false; -- Unset the api dml status
103: Raise;

Line 102: per_qua_shd.g_api_dml := false; -- Unset the api dml status

98: per_qua_shd.g_api_dml := false; -- Unset the api dml status
99: per_qua_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then
102: per_qua_shd.g_api_dml := false; -- Unset the api dml status
103: Raise;
104: End insert_dml;
105:
106: -- ----------------------------------------------------------------------------