DBA Data[Home] [Help]

PACKAGE: APPS.PQH_FR_GLOBAL_PAYSCALE_SWI

Source


1 Package pqh_fr_global_payscale_swi AUTHID CURRENT_USER As
2 /* $Header: pqginswi.pkh 115.3 2004/02/23 03:23 svorugan noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-------------------------< create_global_index >------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pqh_fr_global_payscale_api.create_global_index
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_global_index
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_gross_index                  in     number    default null
30   ,p_increased_index              in     number    default null
31   ,p_global_index_id                 out nocopy number
32   ,p_object_version_number           out nocopy number
33   ,p_effective_start_date            out nocopy date
34   ,p_effective_end_date              out nocopy date
35   ,p_return_status                   out nocopy varchar2
36   );
37 -- ----------------------------------------------------------------------------
38 -- |---------------------------< create_indemnity_rate >--------------------------|
39 -- ----------------------------------------------------------------------------
40 -- {Start of comments}
41 --
42 -- Description:
43 --  This procedure is the self-service wrapper procedure to the following
44 --  API: pqh_fr_global_payscale_api.create_indemnity_rate
45 --
46 -- Pre-requisites
47 --  All 'IN' parameters to this procedure have been appropriately derived.
48 --
49 -- Post Success:
50 --  p_return_status will return value indicating success.
51 --
52 -- Post Failure:
53 --  p_return_status will return value indication failure.
54 --
55 -- Access Status:
56 --  Internal Development use only.
57 --
58 -- {End of comments}
59 -- ----------------------------------------------------------------------------
60 PROCEDURE create_indemnity_rate
61   (p_validate                     in     number    default hr_api.g_false_num
62   ,p_effective_date               in     date
63   ,p_basic_salary_rate            in     number    default null
64   ,p_housing_indemnity_rate       in     number    default null
65   ,p_currency_code                in     varchar2
66   ,p_global_index_id                 out nocopy number
67   ,p_object_version_number           out nocopy number
68   ,p_effective_start_date            out nocopy date
69   ,p_effective_end_date              out nocopy date
70   ,p_return_status                   out nocopy varchar2
71   );
72 -- ----------------------------------------------------------------------------
73 -- |-------------------------< delete_global_index >------------------------|
74 -- ----------------------------------------------------------------------------
75 -- {Start of comments}
76 --
77 -- Description:
78 --  This procedure is the self-service wrapper procedure to the following
79 --  API: pqh_fr_global_payscale_api.delete_global_index
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_global_index
96   (p_validate                     in     number    default hr_api.g_false_num
97   ,p_effective_date               in     date
98   ,p_datetrack_mode               in     varchar2
99   ,p_global_index_id              in     number
100   ,p_object_version_number        in out nocopy number
101   ,p_effective_start_date            out nocopy date
102   ,p_effective_end_date              out nocopy date
103   ,p_return_status                   out nocopy varchar2
104   );
105 -- ----------------------------------------------------------------------------
106 -- |---------------------------< delete_indemnity_rate >--------------------------|
107 -- ----------------------------------------------------------------------------
108 -- {Start of comments}
109 --
110 -- Description:
111 --  This procedure is the self-service wrapper procedure to the following
112 --  API: pqh_fr_global_payscale_api.delete_indemnity_rate
113 --
114 -- Pre-requisites
115 --  All 'IN' parameters to this procedure have been appropriately derived.
116 --
117 -- Post Success:
118 --  p_return_status will return value indicating success.
119 --
120 -- Post Failure:
121 --  p_return_status will return value indication failure.
122 --
123 -- Access Status:
124 --  Internal Development use only.
125 --
126 -- {End of comments}
127 -- ----------------------------------------------------------------------------
128 PROCEDURE delete_indemnity_rate
129   (p_validate                     in     number    default hr_api.g_false_num
130   ,p_effective_date               in     date
131   ,p_datetrack_mode               in     varchar2
132   ,p_global_index_id              in     number
133   ,p_object_version_number        in out nocopy number
134   ,p_effective_start_date            out nocopy date
135   ,p_effective_end_date              out nocopy date
136   ,p_return_status                   out nocopy varchar2
137   );
138 -- ----------------------------------------------------------------------------
139 -- |-------------------------< update_global_index >------------------------|
140 -- ----------------------------------------------------------------------------
141 -- {Start of comments}
142 --
143 -- Description:
144 --  This procedure is the self-service wrapper procedure to the following
145 --  API: pqh_fr_global_payscale_api.update_global_index
146 --
147 -- Pre-requisites
148 --  All 'IN' parameters to this procedure have been appropriately derived.
149 --
150 -- Post Success:
151 --  p_return_status will return value indicating success.
152 --
153 -- Post Failure:
154 --  p_return_status will return value indication failure.
155 --
156 -- Access Status:
157 --  Internal Development use only.
158 --
159 -- {End of comments}
160 -- ----------------------------------------------------------------------------
161 PROCEDURE update_global_index
162   (p_validate                     in     number    default hr_api.g_false_num
163   ,p_effective_date               in     date
164   ,p_datetrack_mode               in     varchar2
165   ,p_global_index_id              in     number
166   ,p_object_version_number        in out nocopy number
167   ,p_gross_index                  in     number    default hr_api.g_number
168   ,p_increased_index              in     number    default hr_api.g_number
169   ,p_effective_start_date            out nocopy date
170   ,p_effective_end_date              out nocopy date
171   ,p_return_status                   out nocopy varchar2
172   );
173 -- ----------------------------------------------------------------------------
174 -- |---------------------------< update_indemnity_rate >--------------------------|
175 -- ----------------------------------------------------------------------------
176 -- {Start of comments}
177 --
178 -- Description:
179 --  This procedure is the self-service wrapper procedure to the following
180 --  API: pqh_fr_global_payscale_api.update_indemnity_rate
181 --
182 -- Pre-requisites
183 --  All 'IN' parameters to this procedure have been appropriately derived.
184 --
185 -- Post Success:
186 --  p_return_status will return value indicating success.
187 --
188 -- Post Failure:
189 --  p_return_status will return value indication failure.
190 --
191 -- Access Status:
192 --  Internal Development use only.
193 --
194 -- {End of comments}
195 -- ----------------------------------------------------------------------------
196 PROCEDURE update_indemnity_rate
197   (p_validate                     in     number    default hr_api.g_false_num
198   ,p_effective_date               in     date
199   ,p_datetrack_mode               in     varchar2
200   ,p_global_index_id              in     number
201   ,p_object_version_number        in out nocopy number
202   ,p_basic_salary_rate            in     number    default hr_api.g_number
203   ,p_housing_indemnity_rate            in     number    default hr_api.g_number
204   ,p_currency_code                in     varchar2
205   ,p_effective_start_date            out nocopy date
206   ,p_effective_end_date              out nocopy date
207   ,p_return_status                   out nocopy varchar2
208   );
209 end pqh_fr_global_payscale_swi;