DBA Data[Home] [Help]

APPS.PER_JOB_INS dependencies on PER_JOB_SHD

Line 75: Procedure insert_dml(p_rec in out nocopy per_job_shd.g_rec_type) is

71: -- Internal Table Handler Use Only.
72: --
73: -- {End Of Comments}
74: -- ----------------------------------------------------------------------------
75: Procedure insert_dml(p_rec in out nocopy per_job_shd.g_rec_type) is
76: --
77: l_proc varchar2(72) := g_package||'insert_dml';
78: --
79: Begin

Line 83: per_job_shd.g_api_dml := true; -- Set the api dml status

79: Begin
80: hr_utility.set_location('Entering:'||l_proc, 5);
81: p_rec.object_version_number := 1; -- Initialise the object version
82: --
83: per_job_shd.g_api_dml := true; -- Set the api dml status
84: --
85: -- Insert the row into: per_jobs
86: --
87: -- Bug 3213714

Line 214: per_job_shd.g_api_dml := false; -- Unset the api dml status

210: p_rec.job_group_id,
211: p_rec.object_version_number
212: );
213: --
214: per_job_shd.g_api_dml := false; -- Unset the api dml status
215: --
216: hr_utility.set_location(' Leaving:'||l_proc, 10);
217: Exception
218: When hr_api.check_integrity_violated Then

Line 220: per_job_shd.g_api_dml := false; -- Unset the api dml status

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

Line 221: per_job_shd.constraint_error

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

Line 225: per_job_shd.g_api_dml := false; -- Unset the api dml status

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

Line 226: per_job_shd.constraint_error

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

Line 230: per_job_shd.g_api_dml := false; -- Unset the api dml status

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

Line 231: per_job_shd.constraint_error

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

Line 234: per_job_shd.g_api_dml := false; -- Unset the api dml status

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

Line 275: Procedure pre_insert(p_rec in out nocopy per_job_shd.g_rec_type) is

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

Line 327: Procedure post_insert(p_rec in per_job_shd.g_rec_type) is

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

Line 414: p_rec in out nocopy per_job_shd.g_rec_type,

410: -- |---------------------------------< ins >----------------------------------|
411: -- ----------------------------------------------------------------------------
412: Procedure ins
413: (
414: p_rec in out nocopy per_job_shd.g_rec_type,
415: p_validate in boolean default false
416: ) is
417: --
418: l_proc varchar2(72) := g_package||'ins';

Line 529: l_rec per_job_shd.g_rec_type;

525: p_object_version_number out nocopy number,
526: p_validate in boolean default false
527: ) is
528: --
529: l_rec per_job_shd.g_rec_type;
530: l_proc varchar2(72) := g_package||'ins';
531: --
532: Begin
533: hr_utility.set_location('Entering:'||l_proc, 5);

Line 539: per_job_shd.convert_args

535: -- Call conversion function to turn arguments into the
536: -- p_rec structure.
537: --
538: l_rec :=
539: per_job_shd.convert_args
540: (
541: null,
542: p_business_group_id,
543: p_job_definition_id,