DBA Data[Home] [Help]

PACKAGE BODY: APPS.FF_FFT_BUS

Source


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