DBA Data[Home] [Help]

PACKAGE: APPS.PQH_FR_VALIDATIONS_SWI

Source


1 Package pqh_fr_validations_swi AUTHID CURRENT_USER As
2 /* $Header: pqvldswi.pkh 115.1 2002/12/05 00:31:07 rpasapul noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |---------------------------< delete_validation >--------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pqh_fr_validations_api.delete_validation
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 delete_validation
27   (p_validation_id                in     number
28   ,p_object_version_number        in     number
29   ,p_return_status                   out nocopy varchar2
30   );
31 -- ----------------------------------------------------------------------------
32 -- |---------------------------< insert_validation >--------------------------|
33 -- ----------------------------------------------------------------------------
34 -- {Start of comments}
35 --
36 -- Description:
37 --  This procedure is the self-service wrapper procedure to the following
38 --  API: pqh_fr_validations_api.insert_validation
39 --
40 -- Pre-requisites
41 --  All 'IN' parameters to this procedure have been appropriately derived.
42 --
43 -- Post Success:
44 --  p_return_status will return value indicating success.
45 --
46 -- Post Failure:
47 --  p_return_status will return value indication failure.
48 --
49 -- Access Status:
50 --  Internal Development use only.
51 --
52 -- {End of comments}
53 -- ----------------------------------------------------------------------------
54 PROCEDURE insert_validation
55   (p_effective_date               in     date
56   ,p_pension_fund_type_code       in     varchar2
57   ,p_pension_fund_id              in     number
58   ,p_business_group_id            in     number
59   ,p_person_id                    in     number
60   ,p_previously_validated_flag    in     varchar2
61   ,p_request_date                 in     date      default null
62   ,p_completion_date              in     date      default null
63   ,p_previous_employer_id         in     number    default null
64   ,p_status                       in     varchar2  default null
65   ,p_employer_amount              in     number    default null
66   ,p_employer_currency_code       in     varchar2  default null
67   ,p_employee_amount              in     number    default null
68   ,p_employee_currency_code       in     varchar2  default null
69   ,p_deduction_per_period         in     number    default null
70   ,p_deduction_currency_code      in     varchar2  default null
71   ,p_percent_of_salary            in     number    default null
72   ,p_validation_id                   out nocopy number
73   ,p_object_version_number           out nocopy number
74   ,p_return_status                   out nocopy varchar2
75   );
76 -- ----------------------------------------------------------------------------
77 -- |---------------------------< update_validation >--------------------------|
78 -- ----------------------------------------------------------------------------
79 -- {Start of comments}
80 --
81 -- Description:
82 --  This procedure is the self-service wrapper procedure to the following
83 --  API: pqh_fr_validations_api.update_validation
84 --
85 -- Pre-requisites
86 --  All 'IN' parameters to this procedure have been appropriately derived.
87 --
88 -- Post Success:
89 --  p_return_status will return value indicating success.
90 --
91 -- Post Failure:
92 --  p_return_status will return value indication failure.
93 --
94 -- Access Status:
95 --  Internal Development use only.
96 --
97 -- {End of comments}
98 -- ----------------------------------------------------------------------------
99 PROCEDURE update_validation
100   (p_effective_date               in     date
101   ,p_validation_id                in     number
102   ,p_object_version_number        in out nocopy number
103   ,p_pension_fund_type_code       in     varchar2  default hr_api.g_varchar2
104   ,p_pension_fund_id              in     number    default hr_api.g_number
105   ,p_business_group_id            in     number    default hr_api.g_number
106   ,p_person_id                    in     number    default hr_api.g_number
107   ,p_previously_validated_flag    in     varchar2  default hr_api.g_varchar2
108   ,p_request_date                 in     date      default hr_api.g_date
109   ,p_completion_date              in     date      default hr_api.g_date
110   ,p_previous_employer_id         in     number    default hr_api.g_number
111   ,p_status                       in     varchar2  default hr_api.g_varchar2
112   ,p_employer_amount              in     number    default hr_api.g_number
113   ,p_employer_currency_code       in     varchar2  default hr_api.g_varchar2
114   ,p_employee_amount              in     number    default hr_api.g_number
115   ,p_employee_currency_code       in     varchar2  default hr_api.g_varchar2
116   ,p_deduction_per_period         in     number    default hr_api.g_number
117   ,p_deduction_currency_code      in     varchar2  default hr_api.g_varchar2
118   ,p_percent_of_salary            in     number    default hr_api.g_number
119   ,p_return_status                   out nocopy varchar2
120   );
121 end pqh_fr_validations_swi;