DBA Data[Home] [Help]

PACKAGE BODY: APPS.HR_PAP_SHD

Source


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