DBA Data[Home] [Help]

PACKAGE BODY: APPS.HR_ABM_DEL

Source


1 Package Body hr_abm_del as
2 /* $Header: hrabmrhi.pkb 115.4 99/10/12 07:03:51 porting ship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
8 g_package  varchar2(33)	:= '  hr_abm_del.';  -- Global package name
9 --
10 -- ----------------------------------------------------------------------------
11 -- |------------------------------< delete_dml >------------------------------|
12 -- ----------------------------------------------------------------------------
13 -- {Start Of Comments}
14 --
15 -- Description:
16 --   This procedure controls the actual dml delete logic. The functions of
17 --   this procedure are as follows:
18 --   1) To set and unset the g_api_dml status as required (as we are about to
19 --      perform dml).
20 --   2) To delete the specified row from the schema using the primary key in
21 --      the predicates.
22 --   3) To trap any constraint violations that may have occurred.
23 --   4) To raise any other errors.
24 --
25 -- Pre Conditions:
26 --   This is an internal private procedure which must be called from the del
27 --   procedure.
28 --
29 -- In Parameters:
30 --   A Pl/Sql record structre.
31 --
32 -- Post Success:
33 --   The specified row will be delete from the schema.
34 --
35 -- Post Failure:
36 --   On the delete dml failure it is important to note that we always reset the
37 --   g_api_dml status to false.
38 --   If a child integrity constraint violation is raised the
39 --   constraint_error procedure will be called.
40 --   If any other error is reported, the error will be raised after the
41 --   g_api_dml status is reset.
42 --
43 -- Developer Implementation Notes:
44 --   None.
45 --
46 -- Access Status:
47 --   Internal Table Handler Use Only.
48 --
49 -- {End Of Comments}
50 -- ----------------------------------------------------------------------------
51 Procedure delete_dml(p_rec in hr_abm_shd.g_rec_type) is
52 --
53   l_proc  varchar2(72) := g_package||'delete_dml';
54 --
55 Begin
56   hr_utility.set_location('Entering:'||l_proc, 5);
57   --
58   hr_abm_shd.g_api_dml := true;  -- Set the api dml status
59   --
60   -- Delete the hr_api_batch_message_lines row.
61   --
62   delete from hr_api_batch_message_lines
63   where line_id = p_rec.line_id;
64   --
65   hr_abm_shd.g_api_dml := false;   -- Unset the api dml status
66   --
67   hr_utility.set_location(' Leaving:'||l_proc, 10);
68 --
69 Exception
70   When hr_api.child_integrity_violated then
71     -- Child integrity has been violated
72     hr_abm_shd.g_api_dml := false;   -- Unset the api dml status
73     hr_abm_shd.constraint_error
74       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
75   When Others Then
76     hr_abm_shd.g_api_dml := false;   -- Unset the api dml status
77     Raise;
78 End delete_dml;
79 --
80 -- ----------------------------------------------------------------------------
81 -- |---------------------------------< del >----------------------------------|
82 -- ----------------------------------------------------------------------------
83 Procedure del
84   (
85   p_rec	      in hr_abm_shd.g_rec_type,
86   p_validate  in boolean default false
87   ) is
88 --
89   l_proc  varchar2(72) := g_package||'del';
90 --
91 Begin
92   hr_utility.set_location('Entering:'||l_proc, 5);
93   --
94   -- Determine if the business process is to be validated.
95   --
96   If p_validate then
97     --
98     -- Issue the savepoint.
99     --
100     SAVEPOINT del_hr_abm;
101   End If;
102   --
103   -- We must lock the row which we need to delete.
104   --
105   hr_abm_shd.lck(p_rec.line_id);
106   --
107   -- Delete the row.
108   --
109   delete_dml(p_rec);
110   --
111   -- If we are validating then raise the Validate_Enabled exception
112   --
113   If p_validate then
114     Raise HR_Api.Validate_Enabled;
115   End If;
116   --
117   hr_utility.set_location(' Leaving:'||l_proc, 10);
118 Exception
119   When HR_Api.Validate_Enabled Then
120     --
121     -- As the Validate_Enabled exception has been raised
122     -- we must rollback to the savepoint
123     --
124     ROLLBACK TO del_hr_abm;
125 End del;
126 --
127 -- ----------------------------------------------------------------------------
128 -- |---------------------------------< del >----------------------------------|
129 -- ----------------------------------------------------------------------------
130 Procedure del
131   (p_line_id  in number,
132    p_validate in boolean default false) is
133 --
134   l_rec	  hr_abm_shd.g_rec_type;
135   l_proc  varchar2(72) := g_package||'del';
136 --
137 Begin
138   hr_utility.set_location('Entering:'||l_proc, 5);
139   --
140   -- As the delete procedure accepts a plsql record structure we do need to
141   -- convert the  arguments into the record structure.
142   -- We don't need to call the supplied conversion argument routine as we
143   -- only need a few attributes.
144   --
145   l_rec.line_id:= p_line_id;
146   --
147   --
148   -- Having converted the arguments into the hr_abm_rec
149   -- plsql record structure we must call the corresponding entity
150   -- business process
151   --
152   del(l_rec, p_validate);
153   --
154   hr_utility.set_location(' Leaving:'||l_proc, 10);
155 End del;
156 --
157 end hr_abm_del;