DBA Data[Home] [Help]

PACKAGE: APPS.PAY_ITERATIVE_RULES_SWI

Source


1 Package pay_iterative_rules_swi As
2 /* $Header: pypitswi.pkh 120.0 2006/01/25 16:08 ndorai noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-------------------------< create_iterative_rule >------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pay_iterative_rules_api.create_iterative_rule
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_iterative_rule
27   (p_effective_date               in     date
28   ,p_element_type_id              in     number
29   ,p_result_name                  in     varchar2
30   ,p_iterative_rule_type          in     varchar2
31   ,p_input_value_id               in     number    default null
32   ,p_severity_level               in     varchar2  default null
33   ,p_business_group_id            in     number    default null
34   ,p_legislation_code             in     varchar2  default null
35   ,p_iterative_rule_id               out nocopy number
36   ,p_object_version_number           out nocopy number
37   ,p_effective_start_date            out nocopy date
38   ,p_effective_end_date              out nocopy date
39   ,p_return_status                   out nocopy varchar2
40   );
41 -- ----------------------------------------------------------------------------
42 -- |-------------------------< delete_iterative_rule >------------------------|
43 -- ----------------------------------------------------------------------------
44 -- {Start of comments}
45 --
46 -- Description:
47 --  This procedure is the self-service wrapper procedure to the following
48 --  API: pay_iterative_rules_api.delete_iterative_rule
49 --
50 -- Pre-requisites
51 --  All 'IN' parameters to this procedure have been appropriately derived.
52 --
53 -- Post Success:
54 --  p_return_status will return value indicating success.
55 --
56 -- Post Failure:
57 --  p_return_status will return value indication failure.
58 --
59 -- Access Status:
60 --  Internal Development use only.
61 --
62 -- {End of comments}
63 -- ----------------------------------------------------------------------------
64 PROCEDURE delete_iterative_rule
65   (p_effective_date               in     date
66   ,p_datetrack_mode               in     varchar2
67   ,p_iterative_rule_id            in     number
68   ,p_object_version_number        in out nocopy number
69   ,p_effective_start_date            out nocopy date
70   ,p_effective_end_date              out nocopy date
71   ,p_return_status                   out nocopy varchar2
72   );
73 -- ----------------------------------------------------------------------------
74 -- |-------------------------< update_iterative_rule >------------------------|
75 -- ----------------------------------------------------------------------------
76 -- {Start of comments}
77 --
78 -- Description:
79 --  This procedure is the self-service wrapper procedure to the following
80 --  API: pay_iterative_rules_api.update_iterative_rule
81 --
82 -- Pre-requisites
83 --  All 'IN' parameters to this procedure have been appropriately derived.
84 --
85 -- Post Success:
86 --  p_return_status will return value indicating success.
87 --
88 -- Post Failure:
89 --  p_return_status will return value indication failure.
90 --
91 -- Access Status:
92 --  Internal Development use only.
93 --
94 -- {End of comments}
95 -- ----------------------------------------------------------------------------
96 PROCEDURE update_iterative_rule
97   (p_effective_date               in     date
98   ,p_datetrack_mode               in     varchar2
99   ,p_iterative_rule_id            in     number
100   ,p_object_version_number        in out nocopy number
101   ,p_element_type_id              in     number    default hr_api.g_number
102   ,p_result_name                  in     varchar2  default hr_api.g_varchar2
103   ,p_iterative_rule_type          in     varchar2  default hr_api.g_varchar2
104   ,p_input_value_id               in     number    default hr_api.g_number
105   ,p_severity_level               in     varchar2  default hr_api.g_varchar2
106   ,p_business_group_id            in     number    default hr_api.g_number
107   ,p_legislation_code             in     varchar2  default hr_api.g_varchar2
108   ,p_effective_start_date            out nocopy date
109   ,p_effective_end_date              out nocopy date
110   ,p_return_status                   out nocopy varchar2
111   );
112  end pay_iterative_rules_swi;