DBA Data[Home] [Help]

PACKAGE BODY: APPS.PAY_SFR_SHD

Source


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