DBA Data[Home] [Help]

APPS.PER_BIL_INS dependencies on PER_BIL_SHD

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

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

Line 110: per_bil_shd.g_api_dml := false; -- Unset the api dml status

106: p_rec.date_value2,
107: p_rec.date_value3
108: );
109: --
110: per_bil_shd.g_api_dml := false; -- Unset the api dml status
111: --
112: hr_utility.set_location(' Leaving:'||l_proc, 10);
113: Exception
114: When hr_api.check_integrity_violated Then

Line 116: per_bil_shd.g_api_dml := false; -- Unset the api dml status

112: hr_utility.set_location(' Leaving:'||l_proc, 10);
113: Exception
114: When hr_api.check_integrity_violated Then
115: -- A check constraint has been violated
116: per_bil_shd.g_api_dml := false; -- Unset the api dml status
117: per_bil_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated

Line 117: per_bil_shd.constraint_error

113: Exception
114: When hr_api.check_integrity_violated Then
115: -- A check constraint has been violated
116: per_bil_shd.g_api_dml := false; -- Unset the api dml status
117: per_bil_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: per_bil_shd.g_api_dml := false; -- Unset the api dml status

Line 121: per_bil_shd.g_api_dml := false; -- Unset the api dml status

117: per_bil_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: per_bil_shd.g_api_dml := false; -- Unset the api dml status
122: per_bil_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated

Line 122: per_bil_shd.constraint_error

118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: per_bil_shd.g_api_dml := false; -- Unset the api dml status
122: per_bil_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: per_bil_shd.g_api_dml := false; -- Unset the api dml status

Line 126: per_bil_shd.g_api_dml := false; -- Unset the api dml status

122: per_bil_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: per_bil_shd.g_api_dml := false; -- Unset the api dml status
127: per_bil_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When Others Then
130: per_bil_shd.g_api_dml := false; -- Unset the api dml status

Line 127: per_bil_shd.constraint_error

123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: per_bil_shd.g_api_dml := false; -- Unset the api dml status
127: per_bil_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When Others Then
130: per_bil_shd.g_api_dml := false; -- Unset the api dml status
131: Raise;

Line 130: per_bil_shd.g_api_dml := false; -- Unset the api dml status

126: per_bil_shd.g_api_dml := false; -- Unset the api dml status
127: per_bil_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When Others Then
130: per_bil_shd.g_api_dml := false; -- Unset the api dml status
131: Raise;
132: End insert_dml;
133: --
134: -- ----------------------------------------------------------------------------

Line 171: Procedure pre_insert(p_rec in out nocopy per_bil_shd.g_rec_type) is

167: -- Internal Row Handler Use Only.
168: --
169: -- {End Of Comments}
170: -- ----------------------------------------------------------------------------
171: Procedure pre_insert(p_rec in out nocopy per_bil_shd.g_rec_type) is
172: --
173: l_proc varchar2(72) := g_package||'pre_insert';
174: --
175: Cursor C_Sel1 is select hr_summary_s.nextval from sys.dual;

Line 222: Procedure post_insert(p_rec in per_bil_shd.g_rec_type) is

218: -- Internal Row Handler Use Only.
219: --
220: -- {End Of Comments}
221: -- ----------------------------------------------------------------------------
222: Procedure post_insert(p_rec in per_bil_shd.g_rec_type) is
223: --
224: l_proc varchar2(72) := g_package||'post_insert';
225: --
226: Begin

Line 282: p_rec in out nocopy per_bil_shd.g_rec_type

278: -- |---------------------------------< ins >----------------------------------|
279: -- ----------------------------------------------------------------------------
280: Procedure ins
281: (
282: p_rec in out nocopy per_bil_shd.g_rec_type
283: ) is
284: --
285: l_proc varchar2(72) := g_package||'ins';
286: --

Line 334: l_rec per_bil_shd.g_rec_type;

330: p_date_value2 in date default null,
331: p_date_value3 in date default null
332: ) is
333: --
334: l_rec per_bil_shd.g_rec_type;
335: l_proc varchar2(72) := g_package||'ins';
336: --
337: Begin
338: hr_utility.set_location('Entering:'||l_proc, 5);

Line 344: per_bil_shd.convert_args

340: -- Call conversion function to turn arguments into the
341: -- p_rec structure.
342: --
343: l_rec :=
344: per_bil_shd.convert_args
345: (
346: p_type,
347: p_business_group_id,
348: null,