DBA Data[Home] [Help]

PACKAGE: APPS.HR_POS_HIERARCHY_ELE_SWI

Source


1 Package hr_pos_hierarchy_ele_swi AUTHID CURRENT_USER As
2 /* $Header: hrpseswi.pkh 115.2 2002/12/03 01:07:14 ndorai noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-----------------------< create_pos_hierarchy_ele >-----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: hr_pos_hierarchy_ele_api.create_pos_hierarchy_ele
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_pos_hierarchy_ele
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_parent_position_id           in     number
29   ,p_pos_structure_version_id     in     number
30   ,p_subordinate_position_id      in     number
31   ,p_business_group_id            in     number
32   ,p_hr_installed                 in     varchar2
33   ,p_effective_date               in     date
34   ,p_pos_structure_element_id        out nocopy number
35   ,p_object_version_number           out nocopy number
36   ,p_return_status                   out nocopy varchar2
37   );
38 -- ----------------------------------------------------------------------------
39 -- |---------------------< create_pos_hier_elem_internal >--------------------|
40 -- ----------------------------------------------------------------------------
41 -- {Start of comments}
42 --
43 -- Description:
44 --  This procedure is the self-service wrapper procedure to the following
45 --  API: hr_pos_hierarchy_ele_api.create_pos_hier_elem_internal
46 --
47 -- Pre-requisites
48 --  All 'IN' parameters to this procedure have been appropriately derived.
49 --
50 -- Post Success:
51 --  p_return_status will return value indicating success.
52 --
53 -- Post Failure:
54 --  p_return_status will return value indication failure.
55 --
56 -- Access Status:
57 --  Internal Development use only.
58 --
59 -- {End of comments}
60 -- ----------------------------------------------------------------------------
61 PROCEDURE create_pos_hier_elem_internal
62   (p_parent_position_id           in     number
63   ,p_pos_structure_version_id     in     number
64   ,p_subordinate_position_id      in     number
65   ,p_business_group_id            in     number
66   ,p_hr_installed                 in     varchar2
67   ,p_effective_date               in     date
68   ,p_pos_structure_element_id        out nocopy number
69   ,p_object_version_number           out nocopy number
70   ,p_return_status                   out nocopy varchar2
71   );
72 -- ----------------------------------------------------------------------------
73 -- |-----------------------< delete_pos_hierarchy_ele >-----------------------|
74 -- ----------------------------------------------------------------------------
75 -- {Start of comments}
76 --
77 -- Description:
78 --  This procedure is the self-service wrapper procedure to the following
79 --  API: hr_pos_hierarchy_ele_api.delete_pos_hierarchy_ele
80 --
81 -- Pre-requisites
82 --  All 'IN' parameters to this procedure have been appropriately derived.
83 --
84 -- Post Success:
85 --  p_return_status will return value indicating success.
86 --
87 -- Post Failure:
88 --  p_return_status will return value indication failure.
89 --
90 -- Access Status:
91 --  Internal Development use only.
92 --
93 -- {End of comments}
94 -- ----------------------------------------------------------------------------
95 PROCEDURE delete_pos_hierarchy_ele
96   (p_validate                     in     number    default hr_api.g_false_num
97   ,p_pos_structure_element_id     in     number
98   ,p_object_version_number        in     number
99   ,p_hr_installed                 in     varchar2
100   ,p_return_status                   out nocopy varchar2
101   );
102 -- ----------------------------------------------------------------------------
103 -- |---------------------< delete_pos_hier_elem_internal >--------------------|
104 -- ----------------------------------------------------------------------------
105 -- {Start of comments}
106 --
107 -- Description:
108 --  This procedure is the self-service wrapper procedure to the following
109 --  API: hr_pos_hierarchy_ele_api.delete_pos_hier_elem_internal
110 --
111 -- Pre-requisites
112 --  All 'IN' parameters to this procedure have been appropriately derived.
113 --
114 -- Post Success:
115 --  p_return_status will return value indicating success.
116 --
117 -- Post Failure:
118 --  p_return_status will return value indication failure.
119 --
120 -- Access Status:
121 --  Internal Development use only.
122 --
123 -- {End of comments}
124 -- ----------------------------------------------------------------------------
125 PROCEDURE delete_pos_hier_elem_internal
126   (p_pos_structure_element_id     in     number
127   ,p_object_version_number        in     number
128   ,p_hr_installed                 in     varchar2
129   ,p_return_status                   out nocopy varchar2
130   );
131 -- ----------------------------------------------------------------------------
132 -- |-----------------------< update_pos_hierarchy_ele >-----------------------|
133 -- ----------------------------------------------------------------------------
134 -- {Start of comments}
135 --
136 -- Description:
137 --  This procedure is the self-service wrapper procedure to the following
138 --  API: hr_pos_hierarchy_ele_api.update_pos_hierarchy_ele
139 --
140 -- Pre-requisites
141 --  All 'IN' parameters to this procedure have been appropriately derived.
142 --
143 -- Post Success:
144 --  p_return_status will return value indicating success.
145 --
146 -- Post Failure:
147 --  p_return_status will return value indication failure.
148 --
149 -- Access Status:
150 --  Internal Development use only.
151 --
152 -- {End of comments}
153 -- ----------------------------------------------------------------------------
154 PROCEDURE update_pos_hierarchy_ele
155   (p_validate                     in     number    default hr_api.g_false_num
156   ,p_pos_structure_element_id     in     number
157   ,p_effective_date               in     date
158   ,p_parent_position_id           in     number    default hr_api.g_number
159   ,p_subordinate_position_id      in     number    default hr_api.g_number
160   ,p_object_version_number        in out nocopy number
161   ,p_return_status                   out nocopy varchar2
162   );
163 -- ----------------------------------------------------------------------------
164 -- |---------------------< update_pos_hier_elem_internal >--------------------|
165 -- ----------------------------------------------------------------------------
166 -- {Start of comments}
167 --
168 -- Description:
169 --  This procedure is the self-service wrapper procedure to the following
170 --  API: hr_pos_hierarchy_ele_api.update_pos_hier_elem_internal
171 --
172 -- Pre-requisites
173 --  All 'IN' parameters to this procedure have been appropriately derived.
174 --
175 -- Post Success:
176 --  p_return_status will return value indicating success.
177 --
178 -- Post Failure:
179 --  p_return_status will return value indication failure.
180 --
181 -- Access Status:
182 --  Internal Development use only.
183 --
184 -- {End of comments}
185 -- ----------------------------------------------------------------------------
186 PROCEDURE update_pos_hier_elem_internal
187   (p_pos_structure_element_id     in     number
188   ,p_parent_position_id           in     number    default hr_api.g_number
189   ,p_subordinate_position_id      in     number    default hr_api.g_number
190   ,p_effective_date               in     date
191   ,p_object_version_number        in out nocopy number
192   ,p_return_status                   out nocopy varchar2
193   );
194 end hr_pos_hierarchy_ele_swi;