DBA Data[Home] [Help]

PACKAGE: APPS.IRC_APPLICANT_TRACKING_SWI

Source


1 Package irc_applicant_tracking_swi As
2 /* $Header: iriatswi.pkh 120.0.12000000.1 2007/03/23 12:24:08 vboggava noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-----------------------< create_applicant_snapshot >----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: irc_apl_prfl_snapshots_api.create_applicant_snapshot
11 --
12 -- Pre-requisites
13 --  All 'IN' parameters to this procedure have been appropriately derived.
14 --
15 -- Post Success:
16 --  p_return_status will return value indicating success.
17 --
18 -- Post Failure:
19 --  p_return_status will return value indication failure.
20 --
21 -- Access Status:
22 --  Internal Development use only.
23 --
24 -- {End of comments}
25 -- ----------------------------------------------------------------------------
26 PROCEDURE create_applicant_snapshot
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_person_id                    in     number
30   ,p_profile_snapshot_id          in     number
31   ,p_object_version_number           out nocopy number
32   ,p_return_status                   out nocopy varchar2
33   );
34 -- ----------------------------------------------------------------------------
35 -- |-----------------------< update_applicant_snapshot >----------------------|
36 -- ----------------------------------------------------------------------------
37 -- {Start of comments}
38 --
39 -- Description:
40 --  This procedure is the self-service wrapper procedure to the following
41 --  API: irc_apl_prfl_snapshots_api.update_applicant_snapshot
42 --
43 -- Pre-requisites
44 --  All 'IN' parameters to this procedure have been appropriately derived.
45 --
46 -- Post Success:
47 --  p_return_status will return value indicating success.
48 --
49 -- Post Failure:
50 --  p_return_status will return value indication failure.
51 --
52 -- Access Status:
53 --  Internal Development use only.
54 --
55 -- {End of comments}
56 -- ----------------------------------------------------------------------------
57 PROCEDURE update_applicant_snapshot
58   (p_validate                     in     number    default hr_api.g_false_num
59   ,p_effective_date               in     date
60   ,p_person_id                    in     number
61   ,p_profile_snapshot_id          in out nocopy number
62   ,p_object_version_number        in out nocopy number
63   ,p_return_status                   out nocopy varchar2
64   );
65 -- ----------------------------------------------------------------------------
66 -- |-----------------------< delete_applicant_snapshot >----------------------|
67 -- ----------------------------------------------------------------------------
68 -- {Start of comments}
69 --
70 -- Description:
71 --  This procedure is the self-service wrapper procedure to the following
72 --  API: irc_apl_prfl_snapshots_api.delete_applicant_snapshot
73 --
74 -- Pre-requisites
75 --  All 'IN' parameters to this procedure have been appropriately derived.
76 --
77 -- Post Success:
78 --  p_return_status will return value indicating success.
79 --
80 -- Post Failure:
81 --  p_return_status will return value indication failure.
82 --
83 -- Access Status:
84 --  Internal Development use only.
85 --
86 -- {End of comments}
87 -- ----------------------------------------------------------------------------
88 PROCEDURE delete_applicant_snapshot
89   (p_validate                     in     number    default hr_api.g_false_num
90   ,p_effective_date               in     date
91   ,p_person_id                    in     number
92   ,p_profile_snapshot_id          in     number
93   ,p_object_version_number        in     number
94   ,p_return_status                   out nocopy varchar2
95   );
96 -- ----------------------------------------------------------------------------
97 -- |------------------------< create_search_criteria >------------------------|
98 -- ----------------------------------------------------------------------------
99 -- {Start of comments}
100 --
101 -- Description:
102 --  This procedure is the self-service wrapper procedure to the following
103 --  API: irc_saved_search_criteria_api.create_search_criteria
104 --
105 -- Pre-requisites
106 --  All 'IN' parameters to this procedure have been appropriately derived.
107 --
108 -- Post Success:
109 --  p_return_status will return value indicating success.
110 --
111 -- Post Failure:
112 --  p_return_status will return value indication failure.
113 --
114 -- Access Status:
115 --  Internal Development use only.
116 --
117 -- {End of comments}
118 -- ----------------------------------------------------------------------------
119 PROCEDURE create_search_criteria
120   (p_validate                     in     number    default hr_api.g_false_num
121   ,p_vacancy_id                   in     number
122   ,p_saved_search_criteria_id     in     number
123   ,p_object_version_number           out nocopy number
124   ,p_return_status                   out nocopy varchar2
125   );
126 -- ----------------------------------------------------------------------------
127 -- |------------------------< update_search_criteria >------------------------|
128 -- ----------------------------------------------------------------------------
129 -- {Start of comments}
130 --
131 -- Description:
132 --  This procedure is the self-service wrapper procedure to the following
133 --  API: irc_saved_search_criteria_api.update_search_criteria
134 --
135 -- Pre-requisites
136 --  All 'IN' parameters to this procedure have been appropriately derived.
137 --
138 -- Post Success:
139 --  p_return_status will return value indicating success.
140 --
141 -- Post Failure:
142 --  p_return_status will return value indication failure.
143 --
144 -- Access Status:
145 --  Internal Development use only.
146 --
147 -- {End of comments}
148 -- ----------------------------------------------------------------------------
149 PROCEDURE update_search_criteria
150   (p_validate                     in     number    default hr_api.g_false_num
151   ,p_vacancy_id                   in     number
152   ,p_saved_search_criteria_id     in out nocopy number
153   ,p_object_version_number        in out nocopy number
154   ,p_return_status                   out nocopy varchar2
155   );
156 -- ----------------------------------------------------------------------------
157 -- |------------------------< delete_search_criteria >------------------------|
158 -- ----------------------------------------------------------------------------
159 -- {Start of comments}
160 --
161 -- Description:
162 --  This procedure is the self-service wrapper procedure to the following
163 --  API: irc_saved_search_criteria_api.delete_search_criteria
164 --
165 -- Pre-requisites
166 --  All 'IN' parameters to this procedure have been appropriately derived.
167 --
168 -- Post Success:
169 --  p_return_status will return value indicating success.
170 --
171 -- Post Failure:
172 --  p_return_status will return value indication failure.
173 --
174 -- Access Status:
175 --  Internal Development use only.
176 --
177 -- {End of comments}
178 -- ----------------------------------------------------------------------------
179 PROCEDURE delete_search_criteria
180   (p_validate                     in     number    default hr_api.g_false_num
181   ,p_vacancy_id                   in     number
182   ,p_saved_search_criteria_id     in     number
183   ,p_object_version_number        in     number
184   ,p_return_status                   out nocopy varchar2
185   );
186 -- ----------------------------------------------------------------------------
187 -- |-----------------------< create_apl_profile_access >----------------------|
188 -- ----------------------------------------------------------------------------
189 -- {Start of comments}
190 --
191 -- Description:
192 --  This procedure is the self-service wrapper procedure to the following
193 --  API: irc_apl_profile_access_api.create_apl_profile_access
194 --
195 -- Pre-requisites
196 --  All 'IN' parameters to this procedure have been appropriately derived.
197 --
198 -- Post Success:
199 --  p_return_status will return value indicating success.
200 --
201 -- Post Failure:
202 --  p_return_status will return value indication failure.
203 --
204 -- Access Status:
205 --  Internal Development use only.
206 --
207 -- {End of comments}
208 -- ----------------------------------------------------------------------------
209 PROCEDURE create_apl_profile_access
210   (p_validate                     in     number    default hr_api.g_false_num
211   ,p_person_id                    in     number
212   ,p_apl_profile_access_id        in     number
213   ,p_object_version_number           out nocopy number
214   ,p_return_status                   out nocopy varchar2
215   );
216 -- ----------------------------------------------------------------------------
217 -- |-----------------------< update_apl_profile_access >----------------------|
218 -- ----------------------------------------------------------------------------
219 -- {Start of comments}
220 --
221 -- Description:
222 --  This procedure is the self-service wrapper procedure to the following
223 --  API: irc_apl_profile_access_api.update_apl_profile_access
224 --
225 -- Pre-requisites
226 --  All 'IN' parameters to this procedure have been appropriately derived.
227 --
228 -- Post Success:
229 --  p_return_status will return value indicating success.
230 --
231 -- Post Failure:
232 --  p_return_status will return value indication failure.
233 --
234 -- Access Status:
235 --  Internal Development use only.
236 --
237 -- {End of comments}
238 -- ----------------------------------------------------------------------------
239 PROCEDURE update_apl_profile_access
240   (p_validate                     in     number    default hr_api.g_false_num
241   ,p_person_id                    in     number
242   ,p_apl_profile_access_id        in out nocopy number
243   ,p_object_version_number        in out nocopy number
244   ,p_return_status                   out nocopy varchar2
245   );
246  -- ----------------------------------------------------------------------------
247 -- |------------------------< delete_apl_profile_access >------------------------|
248 -- ----------------------------------------------------------------------------
249 -- {Start of comments}
250 --
251 -- Description:
252 --  This procedure is the self-service wrapper procedure to the following
253 --  API: irc_apl_profile_access_api.delete_apl_profile_access
254 --
255 -- Pre-requisites
256 --  All 'IN' parameters to this procedure have been appropriately derived.
257 --
258 -- Post Success:
259 --  p_return_status will return value indicating success.
260 --
261 -- Post Failure:
262 --  p_return_status will return value indication failure.
263 --
264 -- Access Status:
265 --  Internal Development use only.
266 --
267 -- {End of comments}
268 -- ----------------------------------------------------------------------------
269 PROCEDURE delete_apl_profile_access
270   (p_validate                     	in     number    default hr_api.g_false_num
271   ,p_person_id                   	in     number
272   ,p_apl_profile_access_id     		in     number
273   ,p_object_version_number        	in     number
274   ,p_return_status                   	out nocopy varchar2
275   );
276  end irc_applicant_tracking_swi;