DBA Data[Home] [Help]

PACKAGE: APPS.IRC_VACANCY_CONSIDERATIONS_SWI

Source


1 Package irc_vacancy_considerations_swi AUTHID CURRENT_USER As
2 /* $Header: irivcswi.pkh 120.0 2005/07/26 15:12:48 mbocutt noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |---------------------< create_vacancy_consideration >---------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: irc_vacancy_considerations_api.create_vacancy_consideration
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_vacancy_consideration
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_vacancy_consideration_id     in     number
29   ,p_person_id                    in     number
30   ,p_vacancy_id                   in     number
31   ,p_consideration_status         in     varchar2  default null
32   ,p_object_version_number           out nocopy number
33   ,p_effective_date               in     date
34   ,p_return_status                   out nocopy varchar2
35   );
36 -- ----------------------------------------------------------------------------
37 -- |---------------------< delete_vacancy_consideration >---------------------|
38 -- ----------------------------------------------------------------------------
39 -- {Start of comments}
40 --
41 -- Description:
42 --  This procedure is the self-service wrapper procedure to the following
43 --  API: irc_vacancy_considerations_api.delete_vacancy_consideration
44 --
45 -- Pre-requisites
46 --  All 'IN' parameters to this procedure have been appropriately derived.
47 --
48 -- Post Success:
49 --  p_return_status will return value indicating success.
50 --
51 -- Post Failure:
52 --  p_return_status will return value indication failure.
53 --
54 -- Access Status:
55 --  Internal Development use only.
56 --
57 -- {End of comments}
58 -- ----------------------------------------------------------------------------
59 PROCEDURE delete_vacancy_consideration
60   (p_validate                     in     number    default hr_api.g_false_num
61   ,p_vacancy_consideration_id     in     number
62   ,p_object_version_number        in     number
63   ,p_return_status                   out nocopy varchar2
64   );
65 -- ----------------------------------------------------------------------------
66 -- |---------------------< update_vacancy_consideration >---------------------|
67 -- ----------------------------------------------------------------------------
68 -- {Start of comments}
69 --
70 -- Description:
71 --  This procedure is the self-service wrapper procedure to the following
72 --  API: irc_vacancy_considerations_api.update_vacancy_consideration
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 update_vacancy_consideration
89   (p_validate                     in     number    default hr_api.g_false_num
90   ,p_vacancy_consideration_id     in     number
91   ,p_party_id                     in     number    default hr_api.g_number
92   ,p_consideration_status         in     varchar2  default hr_api.g_varchar2
93   ,p_object_version_number        in out nocopy number
94   ,p_effective_date               in     date
95   ,p_return_status                   out nocopy varchar2
96   );
97 end irc_vacancy_considerations_swi;