DBA Data[Home] [Help]

APPS.SSP_MAT_INS dependencies on SSP_MAT_SHD

Line 53: Procedure insert_dml(p_rec in out nocopy ssp_mat_shd.g_rec_type) is

49: -- Internal Table Handler Use Only.
50: --
51: -- {End Of Comments}
52: -- ----------------------------------------------------------------------------
53: Procedure insert_dml(p_rec in out nocopy ssp_mat_shd.g_rec_type) is
54: --
55: l_proc varchar2(72) := g_package||'insert_dml';
56: --
57: Begin

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

57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 5);
59: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: ssp_mat_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: ssp_maternities
64: --
65: insert into ssp_maternities

Line 212: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status

208: p_rec.mat_information29,
209: p_rec.mat_information30
210: );
211: --
212: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status
213: --
214: hr_utility.set_location(' Leaving:'||l_proc, 10);
215: Exception
216: When hr_api.check_integrity_violated Then

Line 218: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status

214: hr_utility.set_location(' Leaving:'||l_proc, 10);
215: Exception
216: When hr_api.check_integrity_violated Then
217: -- A check constraint has been violated
218: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status
219: ssp_mat_shd.constraint_error
220: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
221: When hr_api.parent_integrity_violated Then
222: -- Parent integrity has been violated

Line 219: ssp_mat_shd.constraint_error

215: Exception
216: When hr_api.check_integrity_violated Then
217: -- A check constraint has been violated
218: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status
219: ssp_mat_shd.constraint_error
220: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
221: When hr_api.parent_integrity_violated Then
222: -- Parent integrity has been violated
223: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status

Line 223: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status

219: ssp_mat_shd.constraint_error
220: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
221: When hr_api.parent_integrity_violated Then
222: -- Parent integrity has been violated
223: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status
224: ssp_mat_shd.constraint_error
225: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
226: When hr_api.unique_integrity_violated Then
227: -- Unique integrity has been violated

Line 224: ssp_mat_shd.constraint_error

220: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
221: When hr_api.parent_integrity_violated Then
222: -- Parent integrity has been violated
223: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status
224: ssp_mat_shd.constraint_error
225: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
226: When hr_api.unique_integrity_violated Then
227: -- Unique integrity has been violated
228: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status

Line 228: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status

224: ssp_mat_shd.constraint_error
225: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
226: When hr_api.unique_integrity_violated Then
227: -- Unique integrity has been violated
228: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status
229: ssp_mat_shd.constraint_error
230: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
231: When Others Then
232: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status

Line 229: ssp_mat_shd.constraint_error

225: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
226: When hr_api.unique_integrity_violated Then
227: -- Unique integrity has been violated
228: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status
229: ssp_mat_shd.constraint_error
230: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
231: When Others Then
232: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status
233: Raise;

Line 232: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status

228: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status
229: ssp_mat_shd.constraint_error
230: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
231: When Others Then
232: ssp_mat_shd.g_api_dml := false; -- Unset the api dml status
233: Raise;
234: End insert_dml;
235: --
236: -- ----------------------------------------------------------------------------

Line 273: Procedure pre_insert(p_rec in out nocopy ssp_mat_shd.g_rec_type) is

269: -- Internal Table Handler Use Only.
270: --
271: -- {End Of Comments}
272: -- ----------------------------------------------------------------------------
273: Procedure pre_insert(p_rec in out nocopy ssp_mat_shd.g_rec_type) is
274: --
275: l_proc varchar2(72) := g_package||'pre_insert';
276: --
277: Cursor C_Sel1 is select ssp_maternities_s.nextval from sys.dual;

Line 324: Procedure post_insert(p_rec in ssp_mat_shd.g_rec_type) is

320: -- Internal Table Handler Use Only.
321: --
322: -- {End Of Comments}
323: -- ----------------------------------------------------------------------------
324: Procedure post_insert(p_rec in ssp_mat_shd.g_rec_type) is
325: --
326: l_proc varchar2(72) := g_package||'post_insert';
327: --
328: Begin

Line 339: p_rec in out nocopy ssp_mat_shd.g_rec_type,

335: -- |---------------------------------< ins >----------------------------------|
336: -- ----------------------------------------------------------------------------
337: Procedure ins
338: (
339: p_rec in out nocopy ssp_mat_shd.g_rec_type,
340: p_validate in boolean default false
341: ) is
342: --
343: l_proc varchar2(72) := g_package||'ins';

Line 468: l_rec ssp_mat_shd.g_rec_type;

464: p_mat_information29 in varchar2 default null,
465: p_mat_information30 in varchar2 default null
466: ) is
467: --
468: l_rec ssp_mat_shd.g_rec_type;
469: l_proc varchar2(72) := g_package||'ins';
470: --
471: Begin
472: hr_utility.set_location('Entering:'||l_proc, 5);

Line 478: ssp_mat_shd.convert_args

474: -- Call conversion function to turn arguments into the
475: -- p_rec structure.
476: --
477: l_rec :=
478: ssp_mat_shd.convert_args
479: (
480: null,
481: p_due_date,
482: p_person_id,