DBA Data[Home] [Help]

APPS.PER_JBR_INS dependencies on PER_JBR_SHD

Line 53: Procedure insert_dml(p_rec in out nocopy per_jbr_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 per_jbr_shd.g_rec_type) is
54: --
55: l_proc varchar2(72) := g_package||'insert_dml';
56: --
57: Begin

Line 61: per_jbr_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: per_jbr_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_job_requirements
64: --
65: insert into per_job_requirements

Line 142: per_jbr_shd.g_api_dml := false; -- Unset the api dml status

138: p_rec.attribute20,
139: p_rec.object_version_number
140: );
141: --
142: per_jbr_shd.g_api_dml := false; -- Unset the api dml status
143: --
144: hr_utility.set_location(' Leaving:'||l_proc, 10);
145: Exception
146: When hr_api.check_integrity_violated Then

Line 148: per_jbr_shd.g_api_dml := false; -- Unset the api dml status

144: hr_utility.set_location(' Leaving:'||l_proc, 10);
145: Exception
146: When hr_api.check_integrity_violated Then
147: -- A check constraint has been violated
148: per_jbr_shd.g_api_dml := false; -- Unset the api dml status
149: per_jbr_shd.constraint_error
150: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
151: When hr_api.parent_integrity_violated Then
152: -- Parent integrity has been violated

Line 149: per_jbr_shd.constraint_error

145: Exception
146: When hr_api.check_integrity_violated Then
147: -- A check constraint has been violated
148: per_jbr_shd.g_api_dml := false; -- Unset the api dml status
149: per_jbr_shd.constraint_error
150: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
151: When hr_api.parent_integrity_violated Then
152: -- Parent integrity has been violated
153: per_jbr_shd.g_api_dml := false; -- Unset the api dml status

Line 153: per_jbr_shd.g_api_dml := false; -- Unset the api dml status

149: per_jbr_shd.constraint_error
150: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
151: When hr_api.parent_integrity_violated Then
152: -- Parent integrity has been violated
153: per_jbr_shd.g_api_dml := false; -- Unset the api dml status
154: per_jbr_shd.constraint_error
155: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
156: When hr_api.unique_integrity_violated Then
157: -- Unique integrity has been violated

Line 154: per_jbr_shd.constraint_error

150: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
151: When hr_api.parent_integrity_violated Then
152: -- Parent integrity has been violated
153: per_jbr_shd.g_api_dml := false; -- Unset the api dml status
154: per_jbr_shd.constraint_error
155: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
156: When hr_api.unique_integrity_violated Then
157: -- Unique integrity has been violated
158: per_jbr_shd.g_api_dml := false; -- Unset the api dml status

Line 158: per_jbr_shd.g_api_dml := false; -- Unset the api dml status

154: per_jbr_shd.constraint_error
155: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
156: When hr_api.unique_integrity_violated Then
157: -- Unique integrity has been violated
158: per_jbr_shd.g_api_dml := false; -- Unset the api dml status
159: per_jbr_shd.constraint_error
160: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
161: When Others Then
162: per_jbr_shd.g_api_dml := false; -- Unset the api dml status

Line 159: per_jbr_shd.constraint_error

155: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
156: When hr_api.unique_integrity_violated Then
157: -- Unique integrity has been violated
158: per_jbr_shd.g_api_dml := false; -- Unset the api dml status
159: per_jbr_shd.constraint_error
160: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
161: When Others Then
162: per_jbr_shd.g_api_dml := false; -- Unset the api dml status
163: Raise;

Line 162: per_jbr_shd.g_api_dml := false; -- Unset the api dml status

158: per_jbr_shd.g_api_dml := false; -- Unset the api dml status
159: per_jbr_shd.constraint_error
160: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
161: When Others Then
162: per_jbr_shd.g_api_dml := false; -- Unset the api dml status
163: Raise;
164: End insert_dml;
165: --
166: -- ----------------------------------------------------------------------------

Line 203: Procedure pre_insert(p_rec in out nocopy per_jbr_shd.g_rec_type) is

199: -- Internal Table Handler Use Only.
200: --
201: -- {End Of Comments}
202: -- ----------------------------------------------------------------------------
203: Procedure pre_insert(p_rec in out nocopy per_jbr_shd.g_rec_type) is
204: --
205: l_proc varchar2(72) := g_package||'pre_insert';
206: --
207: Cursor C_Sel1 is select per_job_requirements_s.nextval from sys.dual;

Line 254: Procedure post_insert(p_rec in per_jbr_shd.g_rec_type) is

250: -- Internal Table Handler Use Only.
251: --
252: -- {End Of Comments}
253: -- ----------------------------------------------------------------------------
254: Procedure post_insert(p_rec in per_jbr_shd.g_rec_type) is
255: --
256: l_proc varchar2(72) := g_package||'post_insert';
257: --
258: Begin

Line 319: p_rec in out nocopy per_jbr_shd.g_rec_type,

315: -- |---------------------------------< ins >----------------------------------|
316: -- ----------------------------------------------------------------------------
317: Procedure ins
318: (
319: p_rec in out nocopy per_jbr_shd.g_rec_type,
320: p_validate in boolean default false
321: ) is
322: --
323: l_proc varchar2(72) := g_package||'ins';

Line 412: l_rec per_jbr_shd.g_rec_type;

408: p_object_version_number out nocopy number,
409: p_validate in boolean default false
410: ) is
411: --
412: l_rec per_jbr_shd.g_rec_type;
413: l_proc varchar2(72) := g_package||'ins';
414: --
415: Begin
416: hr_utility.set_location('Entering:'||l_proc, 5);

Line 422: per_jbr_shd.convert_args

418: -- Call conversion function to turn arguments into the
419: -- p_rec structure.
420: --
421: l_rec :=
422: per_jbr_shd.convert_args
423: (
424: null,
425: p_business_group_id,
426: p_analysis_criteria_id,