DBA Data[Home] [Help]

PACKAGE BODY: APPS.OTA_ONT_BUS

Source


1 Package Body ota_ont_bus as
2 /* $Header: otontrhi.pkb 120.0 2005/05/29 07:29:47 appldev noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
8 g_package  varchar2(33) := '  ota_ont_bus.';  -- Global package name
9 --
10 -- The following two global variables are only to be
11 -- used by the return_legislation_code function.
12 --
13 g_legislation_code            varchar2(150)  default null;
14 g_offering_id                 number         default null;
15 g_language                    varchar2(4)    default null;
16 --
17 --  ---------------------------------------------------------------------------
18 --  |----------------------< set_security_group_id >--------------------------|
19 --  ---------------------------------------------------------------------------
20 --
21 Procedure set_security_group_id
22   (p_offering_id                          in number
23   ,p_associated_column1                   in varchar2 default null
24   ) is
25   --
26   -- Declare cursor
27   --
28   cursor csr_sec_grp is
29     select pbg.security_group_id,
30            pbg.legislation_code
31       from per_business_groups_perf pbg
32          , ota_offerings off
33      where off.offering_id = p_offering_id
34        and pbg.business_group_id = off.business_group_id;
35   --
36   -- Declare local variables
37   --
38   l_security_group_id number;
39   l_proc              varchar2(72)  :=  g_package||'set_security_group_id';
40   l_legislation_code  varchar2(150);
41   --
42 begin
43   --
44   hr_utility.set_location('Entering:'|| l_proc, 10);
45   --
46   -- Ensure that all the mandatory parameter are not null
47   --
48   hr_api.mandatory_arg_error
49     (p_api_name           => l_proc
50     ,p_argument           => 'offering_id'
51     ,p_argument_value     => p_offering_id
52     );
53   --
54   --
55   open csr_sec_grp;
56   fetch csr_sec_grp into l_security_group_id
57                        , l_legislation_code;
58   --
59   if csr_sec_grp%notfound then
60      --
61      close csr_sec_grp;
62      --
63      -- The primary key is invalid therefore we must error
64      --
65      fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
66      hr_multi_message.add
67        (p_associated_column1
68         => nvl(p_associated_column1,'OFFERING_ID')
69        );
70      --
71   else
72     close csr_sec_grp;
73     --
74     -- Set the security_group_id in CLIENT_INFO
75     --
76     hr_api.set_security_group_id
77       (p_security_group_id => l_security_group_id
78       );
79     --
80     -- Set the sessions legislation context in HR_SESSION_DATA
81     --
82     hr_api.set_legislation_context(l_legislation_code);
83   end if;
84   --
85   hr_utility.set_location(' Leaving:'|| l_proc, 20);
86   --
87 end set_security_group_id;
88 --
89 --  ---------------------------------------------------------------------------
90 --  |---------------------< return_legislation_code >-------------------------|
91 --  ---------------------------------------------------------------------------
92 --
93 Function return_legislation_code
94   (p_offering_id                          in     number
95   ,p_language                             in     varchar2
96   )
97   Return Varchar2 Is
98   --
99   -- Declare cursor
100   --
101   cursor csr_leg_code is
102     select pbg.legislation_code
103       from per_business_groups_perf     pbg
104          , ota_offerings off
105      where off.offering_id = p_offering_id
106        and pbg.business_group_id = off.business_group_id;
107   --
108   -- Declare local variables
109   --
110   l_legislation_code  varchar2(150);
111   l_proc              varchar2(72)  :=  g_package||'return_legislation_code';
112   --
113 Begin
114   --
115   hr_utility.set_location('Entering:'|| l_proc, 10);
116   --
117   -- Ensure that all the mandatory parameter are not null
118   --
119   hr_api.mandatory_arg_error
120     (p_api_name           => l_proc
121     ,p_argument           => 'offering_id'
122     ,p_argument_value     => p_offering_id
123     );
124   --
125   --
126   if (( nvl(ota_ont_bus.g_offering_id, hr_api.g_number)
127        = p_offering_id)
128   and ( nvl(ota_ont_bus.g_language, hr_api.g_varchar2)
129        = p_language)) then
130     --
131     -- The legislation code has already been found with a previous
132     -- call to this function. Just return the value in the global
133     -- variable.
134     --
135     l_legislation_code := ota_ont_bus.g_legislation_code;
136     hr_utility.set_location(l_proc, 20);
137   else
138     --
139     -- The ID is different to the last call to this function
140     -- or this is the first call to this function.
141     --
142     open csr_leg_code;
143     fetch csr_leg_code into l_legislation_code;
144     --
145     if csr_leg_code%notfound then
146       --
147       -- The primary key is invalid therefore we must error
148       --
149       close csr_leg_code;
150       fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
151       fnd_message.raise_error;
152     end if;
153     hr_utility.set_location(l_proc,30);
154     --
155     -- Set the global variables so the values are
156     -- available for the next call to this function.
157     --
158     close csr_leg_code;
159     ota_ont_bus.g_offering_id                 := p_offering_id;
160     ota_ont_bus.g_language                    := p_language;
161     ota_ont_bus.g_legislation_code  := l_legislation_code;
162   end if;
163   hr_utility.set_location(' Leaving:'|| l_proc, 40);
164   return l_legislation_code;
165 end return_legislation_code;
166 --
167 -- ----------------------------------------------------------------------------
168 -- |-----------------------< chk_non_updateable_args >------------------------|
169 -- ----------------------------------------------------------------------------
170 -- {Start Of Comments}
171 --
172 -- Description:
173 --   This procedure is used to ensure that non updateable attributes have
174 --   not been updated. If an attribute has been updated an error is generated.
175 --
176 -- Pre Conditions:
177 --   g_old_rec has been populated with details of the values currently in
178 --   the database.
179 --
180 -- In Arguments:
181 --   p_rec has been populated with the updated values the user would like the
182 --   record set to.
183 --
184 -- Post Success:
185 --   Processing continues if all the non updateable attributes have not
186 --   changed.
187 --
188 -- Post Failure:
189 --   An application error is raised if any of the non updatable attributes
190 --   have been altered.
191 --
192 -- {End Of Comments}
193 -- ----------------------------------------------------------------------------
194 Procedure chk_non_updateable_args
195   (p_effective_date               in date
196   ,p_rec in ota_ont_shd.g_rec_type
197   ) IS
198 --
199   l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
200 --
201 Begin
202   --
203   -- Only proceed with the validation if a row exists for the current
204   -- record in the HR Schema.
205   --
206   IF NOT ota_ont_shd.api_updating
207       (p_offering_id                       => p_rec.offering_id
208       ,p_language                          => p_rec.language
209       ) THEN
210      fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
211      fnd_message.set_token('PROCEDURE ', l_proc);
212      fnd_message.set_token('STEP ', '5');
213      fnd_message.raise_error;
214   END IF;
215   --
216   -- EDIT_HERE: Add checks to ensure non-updateable args have
217   --            not been updated.
218   --
219 End chk_non_updateable_args;
220 --
221 -- ----------------------------------------------------------------------------
222 -- |---------------------------< insert_validate >----------------------------|
223 -- ----------------------------------------------------------------------------
224 Procedure insert_validate
225   (p_effective_date               in date
226   ,p_rec                          in ota_ont_shd.g_rec_type
227   ,p_offering_id                  in number
228   ) is
229 --
230   l_proc  varchar2(72) := g_package||'insert_validate';
231 --
232 Begin
233   hr_utility.set_location('Entering:'||l_proc, 5);
234   --
235   -- Call all supporting business operations
236   --
237   --
238    ota_off_bus.set_security_group_id(p_offering_id);
239   --
240   -- Validate Dependent Attributes
241   --
242   --
243   hr_utility.set_location(' Leaving:'||l_proc, 10);
244 End insert_validate;
245 --
246 -- ----------------------------------------------------------------------------
247 -- |---------------------------< update_validate >----------------------------|
248 -- ----------------------------------------------------------------------------
249 Procedure update_validate
250   (p_effective_date               in date
251   ,p_rec                          in ota_ont_shd.g_rec_type
252   ) is
253 --
254   l_proc  varchar2(72) := g_package||'update_validate';
255 --
256 Begin
257   hr_utility.set_location('Entering:'||l_proc, 5);
258   --
259   -- Call all supporting business operations
260   --
261    ota_off_bus.set_security_group_id(p_rec.offering_id);
262   --
263   --
264   -- Validate Dependent Attributes
265   --
266   chk_non_updateable_args
267     (p_effective_date              => p_effective_date
268       ,p_rec              => p_rec
269     );
270   --
271   --
272   hr_utility.set_location(' Leaving:'||l_proc, 10);
273 End update_validate;
274 --
275 -- ----------------------------------------------------------------------------
276 -- |---------------------------< delete_validate >----------------------------|
277 -- ----------------------------------------------------------------------------
278 Procedure delete_validate
279   (p_rec                          in ota_ont_shd.g_rec_type
280   ) is
281 --
282   l_proc  varchar2(72) := g_package||'delete_validate';
283 --
284 Begin
285   hr_utility.set_location('Entering:'||l_proc, 5);
286   --
287   -- Call all supporting business operations
288   --
289   hr_utility.set_location(' Leaving:'||l_proc, 10);
290 End delete_validate;
291 --
292 end ota_ont_bus;