DBA Data[Home] [Help]

PACKAGE BODY: APPS.PAY_URT_SHD

Source


1 Package Body pay_urt_shd as
2 /* $Header: pyurtrhi.pkb 120.0 2005/05/29 09:13:41 appldev noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
8 g_package  varchar2(33) := '  pay_urt_shd.';  -- Global package name
9 --
10 -- ----------------------------------------------------------------------------
11 -- |---------------------------< constraint_error >---------------------------|
12 -- ----------------------------------------------------------------------------
13 Procedure constraint_error
14   (p_constraint_name in all_constraints.constraint_name%TYPE
15   ) Is
16 --
17   l_proc        varchar2(72) := g_package||'constraint_error';
18 --
19 Begin
20   --
21   If (p_constraint_name = 'PAY_USER_ROWS_F_TL_PRIMARY_KEY') Then
22     fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
23     fnd_message.set_token('PROCEDURE', l_proc);
24     fnd_message.set_token('STEP','5');
25     fnd_message.raise_error;
26   Else
27     fnd_message.set_name('PAY', 'HR_7877_API_INVALID_CONSTRAINT');
28     fnd_message.set_token('PROCEDURE', l_proc);
29     fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
30     fnd_message.raise_error;
31   End If;
32   --
33 End constraint_error;
34 --
35 -- ----------------------------------------------------------------------------
36 -- |-----------------------------< api_updating >-----------------------------|
37 -- ----------------------------------------------------------------------------
38 Function api_updating
39   (p_user_row_id                          in     number
40   ,p_language                             in     varchar2
41   )      Return Boolean Is
42 --
43   --
44   -- Cursor selects the 'current' row from the HR Schema
45   --
46   Cursor C_Sel1 is
47     select
48        user_row_id
49       ,language
50       ,source_lang
51       ,row_low_range_or_name
52     from  pay_user_rows_f_tl
53     where user_row_id = p_user_row_id
54     and   language = p_language;
55 --
56   l_fct_ret     boolean;
57 --
58 Begin
59   --
60   If (p_user_row_id is null or
61       p_language is null
62      ) Then
63     --
64     -- One of the primary key arguments is null therefore we must
65     -- set the returning function value to false
66     --
67     l_fct_ret := false;
68   Else
69     If (p_user_row_id
70         = pay_urt_shd.g_old_rec.user_row_id and
71         p_language
72         = pay_urt_shd.g_old_rec.language
73        ) Then
74       --
75       -- The g_old_rec is current therefore we must
76       -- set the returning function to true
77       --
78       l_fct_ret := true;
79     Else
80       --
81       -- Select the current row into g_old_rec
82       --
83       Open C_Sel1;
84       Fetch C_Sel1 Into pay_urt_shd.g_old_rec;
85       If C_Sel1%notfound Then
86         Close C_Sel1;
87         --
88         -- The primary key is invalid therefore we must error
89         --
90         fnd_message.set_name('PAY', 'HR_7220_INVALID_PRIMARY_KEY');
91         fnd_message.raise_error;
92       End If;
93       Close C_Sel1;
94       --
95       l_fct_ret := true;
96     End If;
97   End If;
98   Return (l_fct_ret);
99 --
100 End api_updating;
101 --
102 -- ----------------------------------------------------------------------------
103 -- |---------------------------------< lck >----------------------------------|
104 -- ----------------------------------------------------------------------------
105 Procedure lck
106   (p_user_row_id                          in     number
107   ,p_language                             in     varchar2
108   ) is
109 --
110 -- Cursor selects the 'current' row from the HR Schema
111 --
112   Cursor C_Sel1 is
113     select
114        user_row_id
115       ,language
116       ,source_lang
117       ,row_low_range_or_name
118     from        pay_user_rows_f_tl
119     where       user_row_id = p_user_row_id
120     and   language = p_language
121     for update nowait;
122 --
123   l_proc        varchar2(72) := g_package||'lck';
124 --
125 Begin
126   hr_utility.set_location('Entering:'||l_proc, 5);
127   --
128   hr_api.mandatory_arg_error
129     (p_api_name           => l_proc
130     ,p_argument           => 'USER_ROW_ID'
131     ,p_argument_value     => p_user_row_id
132     );
133   hr_utility.set_location(l_proc,6);
134   hr_api.mandatory_arg_error
135     (p_api_name           => l_proc
136     ,p_argument           => 'LANGUAGE'
137     ,p_argument_value     => p_language
138     );
139   --
140   Open  C_Sel1;
141   Fetch C_Sel1 Into pay_urt_shd.g_old_rec;
142   If C_Sel1%notfound then
143     Close C_Sel1;
144     --
145     -- The primary key is invalid therefore we must error
146     --
147     fnd_message.set_name('PAY', 'HR_7220_INVALID_PRIMARY_KEY');
148     fnd_message.raise_error;
149   End If;
150   Close C_Sel1;
151   --
152   --
153   hr_utility.set_location(' Leaving:'||l_proc, 10);
154   --
155   -- We need to trap the ORA LOCK exception
156   --
157 Exception
158   When HR_Api.Object_Locked then
159     --
160     -- The object is locked therefore we need to supply a meaningful
161     -- error message.
162     --
163     fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
164     fnd_message.set_token('TABLE_NAME', 'pay_user_rows_f_tl');
165     fnd_message.raise_error;
166 End lck;
167 --
168 PROCEDURE add_language IS
169 Begin
170   delete from PAY_USER_ROWS_F_TL T
171   where not exists
172     (select NULL
173     from PAY_USER_ROWS_F B
174     where B.USER_ROW_ID = T.USER_ROW_ID
175     );
176 
177   update PAY_USER_ROWS_F_TL T set (
178       ROW_LOW_RANGE_OR_NAME
179     ) = (select
180       B.ROW_LOW_RANGE_OR_NAME
181     from PAY_USER_ROWS_F_TL B
182     where B.USER_ROW_ID = T.USER_ROW_ID
183     and B.LANGUAGE = T.SOURCE_LANG)
184   where (
185       T.USER_ROW_ID,
186       T.LANGUAGE
187   ) in (select
188       SUBT.USER_ROW_ID,
189       SUBT.LANGUAGE
190     from PAY_USER_ROWS_F_TL SUBB, PAY_USER_ROWS_F_TL SUBT
191     where SUBB.USER_ROW_ID = SUBT.USER_ROW_ID
192     and SUBB.LANGUAGE = SUBT.SOURCE_LANG
193     and (SUBB.ROW_LOW_RANGE_OR_NAME <> SUBT.ROW_LOW_RANGE_OR_NAME));
194 
195   insert into PAY_USER_ROWS_F_TL (
196     USER_ROW_ID,
197     ROW_LOW_RANGE_OR_NAME,
198     LAST_UPDATE_DATE,
199     LAST_UPDATED_BY,
200     LAST_UPDATE_LOGIN,
201     CREATED_BY,
202     CREATION_DATE,
203     LANGUAGE,
204     SOURCE_LANG
205   ) select
206     B.USER_ROW_ID,
207     B.ROW_LOW_RANGE_OR_NAME,
208     B.LAST_UPDATE_DATE,
209     B.LAST_UPDATED_BY,
210     B.LAST_UPDATE_LOGIN,
211     B.CREATED_BY,
212     B.CREATION_DATE,
213     L.LANGUAGE_CODE,
214     B.SOURCE_LANG
215   from PAY_USER_ROWS_F_TL B, FND_LANGUAGES L
216   where L.INSTALLED_FLAG in ('I', 'B')
217   and B.LANGUAGE = userenv('LANG')
218   and not exists
219     (select NULL
220     from PAY_USER_ROWS_F_TL T
221     where T.USER_ROW_ID = B.USER_ROW_ID
222     and T.LANGUAGE = L.LANGUAGE_CODE);
223 End  add_language;
224 --
225 -- ----------------------------------------------------------------------------
226 -- |-----------------------------< convert_args >-----------------------------|
227 -- ----------------------------------------------------------------------------
228 Function convert_args
229   (p_user_row_id                    in number
230   ,p_language                       in varchar2
231   ,p_source_lang                    in varchar2
232   ,p_row_low_range_or_name          in varchar2
233   )
234   Return g_rec_type is
235 --
236   l_rec   g_rec_type;
237 --
238 Begin
239   --
240   -- Convert arguments into local l_rec structure.
241   --
242   l_rec.user_row_id                      := p_user_row_id;
243   l_rec.language                         := p_language;
244   l_rec.source_lang                      := p_source_lang;
245   l_rec.row_low_range_or_name            := p_row_low_range_or_name;
246   --
247   -- Return the plsql record structure.
248   --
249   Return(l_rec);
250 --
251 End convert_args;
252 --
253 end pay_urt_shd;