DBA Data[Home] [Help]

PACKAGE: APPS.PAY_PL_PAYE_SWI

Source


1 Package pay_pl_paye_swi AUTHID CURRENT_USER As
2 /* $Header: pyppdswi.pkh 120.0 2005/10/14 05:12 mseshadr noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |------------------------< create_pl_paye_details >------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pay_pl_paye_api.create_pl_paye_details
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_pl_paye_details
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_contract_category            in     varchar2
30   ,p_per_or_asg_id                in     number
31   ,p_business_group_id            in     number
32   ,p_tax_reduction                in     varchar2
33   ,p_tax_calc_with_spouse_child   in     varchar2
34   ,p_income_reduction             in     varchar2
35   ,p_income_reduction_amount      in     number    default null
36   ,p_rate_of_tax                  in     varchar2
37   ,p_paye_details_id              in     number
38   ,p_object_version_number           out nocopy number
39   ,p_effective_start_date            out nocopy date
40   ,p_effective_end_date              out nocopy date
41   ,p_return_status                   out nocopy varchar2
42   );
43 -- ----------------------------------------------------------------------------
44 -- |------------------------< update_pl_paye_details >------------------------|
45 -- ----------------------------------------------------------------------------
46 -- {Start of comments}
47 --
48 -- Description:
49 --  This procedure is the self-service wrapper procedure to the following
50 --  API: pay_pl_paye_api.update_pl_paye_details
51 --
52 -- Pre-requisites
53 --  All 'IN' parameters to this procedure have been appropriately derived.
54 --
55 -- Post Success:
56 --  p_return_status will return value indicating success.
57 --
58 -- Post Failure:
59 --  p_return_status will return value indication failure.
60 --
61 -- Access Status:
62 --  Internal Development use only.
63 --
64 -- {End of comments}
65 -- ----------------------------------------------------------------------------
66 PROCEDURE update_pl_paye_details
67   (p_validate                     in     number    default hr_api.g_false_num
68   ,p_effective_date               in     date
69   ,p_datetrack_update_mode        in     varchar2
70   ,p_paye_details_id              in     number
71   ,p_object_version_number        in out nocopy number
72   ,p_tax_reduction                in     varchar2  default hr_api.g_varchar2
73   ,p_tax_calc_with_spouse_child   in     varchar2  default hr_api.g_varchar2
74   ,p_income_reduction             in     varchar2  default hr_api.g_varchar2
75   ,p_income_reduction_amount      in     number    default hr_api.g_number
76   ,p_rate_of_tax                  in     varchar2  default hr_api.g_varchar2
77   ,p_effective_start_date            out nocopy date
78   ,p_effective_end_date              out nocopy date
79   ,p_return_status                   out nocopy varchar2
80   );
81 -- ----------------------------------------------------------------------------
82 -- |------------------------< delete_pl_paye_details >------------------------|
83 -- ----------------------------------------------------------------------------
84 -- {Start of comments}
85 --
86 -- Description:
87 --  This procedure is the self-service wrapper procedure to the following
88 --  API: pay_pl_paye_api.delete_pl_paye_details
89 --
90 -- Pre-requisites
91 --  All 'IN' parameters to this procedure have been appropriately derived.
92 --
93 -- Post Success:
94 --  p_return_status will return value indicating success.
95 --
96 -- Post Failure:
97 --  p_return_status will return value indication failure.
98 --
99 -- Access Status:
100 --  Internal Development use only.
101 --
102 -- {End of comments}
103 -- ----------------------------------------------------------------------------
104 PROCEDURE delete_pl_paye_details
105   (p_validate                     in     number    default hr_api.g_false_num
106   ,p_effective_date               in     date
107   ,p_datetrack_delete_mode        in     varchar2
108   ,p_paye_details_id              in     number
109   ,p_object_version_number        in out nocopy number
110   ,p_effective_start_date            out nocopy date
111   ,p_effective_end_date              out nocopy date
112   ,p_return_status                   out nocopy varchar2
113   );
114  end pay_pl_paye_swi;