DBA Data[Home] [Help]

APPS.PER_CHK_INS dependencies on PER_CHK_SHD

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

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

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

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

144: p_rec.attribute29,
145: p_rec.attribute30
146: );
147: --
148: per_chk_shd.g_api_dml := false; -- Unset the api dml status
149: --
150: hr_utility.set_location(' Leaving:'||l_proc, 10);
151: Exception
152: When hr_api.check_integrity_violated Then

Line 154: per_chk_shd.g_api_dml := false; -- Unset the api dml status

150: hr_utility.set_location(' Leaving:'||l_proc, 10);
151: Exception
152: When hr_api.check_integrity_violated Then
153: -- A check constraint has been violated
154: per_chk_shd.g_api_dml := false; -- Unset the api dml status
155: per_chk_shd.constraint_error
156: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
157: When hr_api.parent_integrity_violated Then
158: -- Parent integrity has been violated

Line 155: per_chk_shd.constraint_error

151: Exception
152: When hr_api.check_integrity_violated Then
153: -- A check constraint has been violated
154: per_chk_shd.g_api_dml := false; -- Unset the api dml status
155: per_chk_shd.constraint_error
156: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
157: When hr_api.parent_integrity_violated Then
158: -- Parent integrity has been violated
159: per_chk_shd.g_api_dml := false; -- Unset the api dml status

Line 159: per_chk_shd.g_api_dml := false; -- Unset the api dml status

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

Line 160: per_chk_shd.constraint_error

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

Line 164: per_chk_shd.g_api_dml := false; -- Unset the api dml status

160: per_chk_shd.constraint_error
161: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
162: When hr_api.unique_integrity_violated Then
163: -- Unique integrity has been violated
164: per_chk_shd.g_api_dml := false; -- Unset the api dml status
165: per_chk_shd.constraint_error
166: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
167: When Others Then
168: per_chk_shd.g_api_dml := false; -- Unset the api dml status

Line 165: per_chk_shd.constraint_error

161: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
162: When hr_api.unique_integrity_violated Then
163: -- Unique integrity has been violated
164: per_chk_shd.g_api_dml := false; -- Unset the api dml status
165: per_chk_shd.constraint_error
166: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
167: When Others Then
168: per_chk_shd.g_api_dml := false; -- Unset the api dml status
169: Raise;

Line 168: per_chk_shd.g_api_dml := false; -- Unset the api dml status

164: per_chk_shd.g_api_dml := false; -- Unset the api dml status
165: per_chk_shd.constraint_error
166: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
167: When Others Then
168: per_chk_shd.g_api_dml := false; -- Unset the api dml status
169: Raise;
170: End insert_dml;
171: --
172: -- ----------------------------------------------------------------------------

Line 209: Procedure pre_insert(p_rec in out nocopy per_chk_shd.g_rec_type) is

205: -- Internal Row Handler Use Only.
206: --
207: -- {End Of Comments}
208: -- ----------------------------------------------------------------------------
209: Procedure pre_insert(p_rec in out nocopy per_chk_shd.g_rec_type) is
210: --
211: l_proc varchar2(72) := g_package||'pre_insert';
212: --
213: Cursor C_Sel1 is select per_checklist_items_s.nextval from sys.dual;

Line 261: p_rec in per_chk_shd.g_rec_type) is

257: --
258: -- {End Of Comments}
259: -- ----------------------------------------------------------------------------
260: Procedure post_insert(p_effective_date in date,
261: p_rec in per_chk_shd.g_rec_type) is
262: --
263: l_proc varchar2(72) := g_package||'post_insert';
264: --
265: Begin

Line 339: p_rec in out nocopy per_chk_shd.g_rec_type

335: -- ----------------------------------------------------------------------------
336: Procedure ins
337: (
338: p_effective_date in date,
339: p_rec in out nocopy per_chk_shd.g_rec_type
340: ) is
341: --
342: l_proc varchar2(72) := g_package||'ins';
343: --

Line 414: l_rec per_chk_shd.g_rec_type;

410: p_attribute29 in varchar2 default null,
411: p_attribute30 in varchar2 default null
412: ) is
413: --
414: l_rec per_chk_shd.g_rec_type;
415: l_proc varchar2(72) := g_package||'ins';
416: --
417: Begin
418: hr_utility.set_location('Entering:'||l_proc, 5);

Line 424: per_chk_shd.convert_args

420: -- Call conversion function to turn arguments into the
421: -- p_rec structure.
422: --
423: l_rec :=
424: per_chk_shd.convert_args
425: (
426: null,
427: p_person_id,
428: p_item_code,