DBA Data[Home] [Help]

PACKAGE BODY: APPS.OTA_THG_INS

Source


1 Package Body ota_thg_ins as
2 /* $Header: otthgrhi.pkb 120.0 2005/05/29 07:44:06 appldev noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
8 g_package  varchar2(33)	:= '  ota_thg_ins.';  -- Global package name
9 --
10 -- ----------------------------------------------------------------------------
11 -- |------------------------------< insert_dml >------------------------------|
12 -- ----------------------------------------------------------------------------
13 -- {Start Of Comments}
14 --
15 -- Description:
16 --   This procedure controls the actual dml insert logic. The processing of
17 --   this procedure are as follows:
18 --   1) Initialise the object_version_number to 1 if the object_version_number
19 --      is defined as an attribute for this entity.
20 --   2) To set and unset the g_api_dml status as required (as we are about to
21 --      perform dml).
22 --   3) To insert the row into the schema.
23 --   4) To trap any constraint violations that may have occurred.
24 --   5) To raise any other errors.
25 --
26 -- Prerequisites:
27 --   This is an internal private procedure which must be called from the ins
28 --   procedure and must have all mandatory attributes set (except the
29 --   object_version_number which is initialised within this procedure).
30 --
31 -- In Parameters:
32 --   A Pl/Sql record structre.
33 --
34 -- Post Success:
35 --   The specified row will be inserted into the schema.
36 --
37 -- Post Failure:
38 --   On the insert dml failure it is important to note that we always reset the
39 --   g_api_dml status to false.
40 --   If a check, unique or parent integrity constraint violation is raised the
41 --   constraint_error procedure will be called.
42 --   If any other error is reported, the error will be raised after the
43 --   g_api_dml status is reset.
44 --
45 -- Developer Implementation Notes:
46 --   None.
47 --
48 -- Access Status:
49 --   Internal Row Handler Use Only.
50 --
51 -- {End Of Comments}
52 -- ----------------------------------------------------------------------------
53 Procedure insert_dml
54   (p_rec in out nocopy ota_thg_shd.g_rec_type
55   ) is
56 --
57   l_proc  varchar2(72) := g_package||'insert_dml';
58 --
59 Begin
60   hr_utility.set_location('Entering:'||l_proc, 5);
61   p_rec.object_version_number := 1;  -- Initialise the object version
62   --
63   --
64   --
65   -- Insert the row into: ota_hr_gl_flex_maps
66   --
67   insert into ota_hr_gl_flex_maps
68       (gl_default_segment_id
69       ,cross_charge_id
70       ,segment
71       ,segment_num
72       ,hr_data_source
73       ,constant
74       ,hr_cost_segment
75       ,object_version_number
76       )
77   Values
78     (p_rec.gl_default_segment_id
79     ,p_rec.cross_charge_id
80     ,p_rec.segment
81     ,p_rec.segment_num
82     ,p_rec.hr_data_source
83     ,p_rec.constant
84     ,p_rec.hr_cost_segment
85     ,p_rec.object_version_number
86     );
87   --
88   --
89   --
90   hr_utility.set_location(' Leaving:'||l_proc, 10);
91 Exception
92   When hr_api.check_integrity_violated Then
93     -- A check constraint has been violated
94     --
95     ota_thg_shd.constraint_error
96       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
97   When hr_api.parent_integrity_violated Then
98     -- Parent integrity has been violated
99     --
100     ota_thg_shd.constraint_error
101       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
102   When hr_api.unique_integrity_violated Then
106       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103     -- Unique integrity has been violated
104     --
105     ota_thg_shd.constraint_error
107   When Others Then
108     --
109     Raise;
110 End insert_dml;
111 --
112 -- ----------------------------------------------------------------------------
113 -- |------------------------------< pre_insert >------------------------------|
114 -- ----------------------------------------------------------------------------
115 -- {Start Of Comments}
116 --
117 -- Description:
118 --   This private procedure contains any processing which is required before
119 --   the insert dml. Presently, if the entity has a corresponding primary
120 --   key which is maintained by an associating sequence, the primary key for
121 --   the entity will be populated with the next sequence value in
122 --   preparation for the insert dml.
123 --
124 -- Prerequisites:
125 --   This is an internal procedure which is called from the ins procedure.
126 --
127 -- In Parameters:
128 --   A Pl/Sql record structre.
129 --
130 -- Post Success:
131 --   Processing continues.
132 --
133 -- Post Failure:
134 --   If an error has occurred, an error message and exception will be raised
135 --   but not handled.
136 --
137 -- Developer Implementation Notes:
138 --   Any pre-processing required before the insert dml is issued should be
139 --   coded within this procedure. As stated above, a good example is the
140 --   generation of a primary key number via a corresponding sequence.
141 --   It is important to note that any 3rd party maintenance should be reviewed
142 --   before placing in this procedure.
143 --
144 -- Access Status:
145 --   Internal Row Handler Use Only.
146 --
147 -- {End Of Comments}
148 -- ----------------------------------------------------------------------------
149 Procedure pre_insert
150   (p_rec  in out nocopy ota_thg_shd.g_rec_type
151   ) is
152 --
153   l_proc  varchar2(72) := g_package||'pre_insert';
154 --
155   Cursor C_Sel1 is select ota_hr_gl_flex_maps_s.nextval from sys.dual;
156 --
157 Begin
158   hr_utility.set_location('Entering:'||l_proc, 5);
159   --
160   --
161   -- Select the next sequence number
162   --
163   Open C_Sel1;
164   Fetch C_Sel1 Into p_rec.gl_default_segment_id;
165   Close C_Sel1;
166   --
167   hr_utility.set_location(' Leaving:'||l_proc, 10);
168 End pre_insert;
169 --
170 -- ----------------------------------------------------------------------------
171 -- |-----------------------------< post_insert >------------------------------|
172 -- ----------------------------------------------------------------------------
173 -- {Start Of Comments}
174 --
175 -- Description:
176 --   This private procedure contains any processing which is required after the
177 --   insert dml.
178 --
179 -- Prerequisites:
180 --   This is an internal procedure which is called from the ins procedure.
181 --
182 -- In Parameters:
183 --   A Pl/Sql record structre.
184 --
185 -- Post Success:
186 --   Processing continues.
187 --
188 -- Post Failure:
189 --   If an error has occurred, an error message and exception will be raised
190 --   but not handled.
191 --
192 -- Developer Implementation Notes:
193 --   Any post-processing required after the insert dml is issued should be
194 --   coded within this procedure. It is important to note that any 3rd party
195 --   maintenance should be reviewed before placing in this procedure.
196 --
197 -- Access Status:
198 --   Internal Row Handler Use Only.
199 --
200 -- {End Of Comments}
201 -- ----------------------------------------------------------------------------
202 Procedure post_insert
203   (p_effective_date               in date
204   ,p_rec                          in ota_thg_shd.g_rec_type
205   ) is
206 --
207   l_proc  varchar2(72) := g_package||'post_insert';
208 --
209 Begin
210   hr_utility.set_location('Entering:'||l_proc, 5);
211  /* begin
212     --
213     ota_thg_rki.after_insert
214       (p_effective_date              => p_effective_date
215       ,p_gl_default_segment_id
216       => p_rec.gl_default_segment_id
217       ,p_cross_charge_id
218       => p_rec.cross_charge_id
219       ,p_segment
220       => p_rec.segment
221       ,p_segment_num
222       => p_rec.segment_num
223       ,p_hr_data_source
224       => p_rec.hr_data_source
225       ,p_constant
226       => p_rec.constant
227       ,p_hr_cost_segment
228       => p_rec.hr_cost_segment
229       ,p_object_version_number
230       => p_rec.object_version_number
231       );
232     --
233   exception
234     --
235     when hr_api.cannot_find_prog_unit then
236       --
237       hr_api.cannot_find_prog_unit_error
238         (p_module_name => 'OTA_HR_GL_FLEX_MAPS'
239         ,p_hook_type   => 'AI');
240       --
241   end; */
242   --
243   hr_utility.set_location(' Leaving:'||l_proc, 10);
244 End post_insert;
245 --
246 -- ----------------------------------------------------------------------------
247 -- |---------------------------------< ins >----------------------------------|
248 -- ----------------------------------------------------------------------------
249 Procedure ins
250   (p_effective_date               in date
251   ,p_rec                          in out nocopy ota_thg_shd.g_rec_type
252   ,p_validate                     in     boolean    default false
253   ) is
254 --
255   l_proc  varchar2(72) := g_package||'ins';
256 --
257 Begin
258   hr_utility.set_location('Entering:'||l_proc, 5);
259 
260 
261   If p_validate then
262     --
263     -- Issue the savepoint.
264     --
265     SAVEPOINT ins_ota_thg;
266   End If;
267 
268   --
269   -- Call the supporting insert validate operations
270   --
271   ota_thg_bus.insert_validate
272      (p_effective_date
273      ,p_rec
274      );
275   --
276   -- Call the supporting pre-insert operation
277   --
278   ota_thg_ins.pre_insert(p_rec);
279   --
280   -- Insert the row
281   --
282   ota_thg_ins.insert_dml(p_rec);
283   --
284   -- Call the supporting post-insert operation
285   --
286   ota_thg_ins.post_insert
287      (p_effective_date
288      ,p_rec
289      );
290   --
291   hr_utility.set_location('Leaving:'||l_proc, 20);
292   If p_validate then
293     Raise HR_Api.Validate_Enabled;
294   End If;
295 
296   hr_utility.set_location('Leaving:'||l_proc, 25);
297   Exception
298   When HR_Api.Validate_Enabled Then
299     --
300     -- As the Validate_Enabled exception has been raised
301     -- we must rollback to the savepoint
302     --
303     ROLLBACK TO ins_ota_thg;
304 
305 end ins;
306 --
307 -- ----------------------------------------------------------------------------
308 -- |---------------------------------< ins >----------------------------------|
309 -- ----------------------------------------------------------------------------
310 Procedure ins
311   (p_effective_date               in     date
312   ,p_cross_charge_id                in     number
313   ,p_segment                        in     varchar2
314   ,p_segment_num                    in     number
315   ,p_hr_data_source                     in     varchar2 default null
316   ,p_constant                       in     varchar2 default null
317   ,p_hr_cost_segment                in     varchar2 default null
318   ,p_gl_default_segment_id             out nocopy number
319   ,p_object_version_number             out nocopy number
320   ,p_validate                     in     boolean    default false
321   ) is
322 --
323   l_rec	  ota_thg_shd.g_rec_type;
324   l_proc  varchar2(72) := g_package||'ins';
325 --
326 Begin
327   hr_utility.set_location('Entering:'||l_proc, 5);
328   --
329   -- Call conversion function to turn arguments into the
330   -- p_rec structure.
331   --
332   l_rec :=
333   ota_thg_shd.convert_args
334     (null
335     ,p_cross_charge_id
336     ,p_segment
337     ,p_segment_num
338     ,p_hr_data_source
339     ,p_constant
340     ,p_hr_cost_segment
341     ,null
342     );
343   --
344   -- Having converted the arguments into the ota_thg_rec
345   -- plsql record structure we call the corresponding record business process.
346   --
347   ota_thg_ins.ins
348      (p_effective_date
349      ,l_rec
350      ,p_validate
351      );
352   --
353   -- As the primary key argument(s)
354   -- are specified as an OUT's we must set these values.
355   --
356   p_gl_default_segment_id := l_rec.gl_default_segment_id;
357   p_object_version_number := l_rec.object_version_number;
358   --
359   hr_utility.set_location(' Leaving:'||l_proc, 10);
360 End ins;
361 --
362 end ota_thg_ins;