DBA Data[Home] [Help]

PACKAGE: APPS.PQH_FR_STAT_SIT_RULES_SWI

Source


1 Package pqh_fr_stat_sit_rules_swi AUTHID CURRENT_USER As
2 /* $Header: pqstrswi.pkh 115.0 2003/10/15 12:14 svorugan noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |----------------------< create_stat_situation_rule >----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pqh_fr_stat_sit_rules_api.create_stat_situation_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_stat_situation_rule
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date      default null
29   ,p_statutory_situation_id       in     number
30   ,p_processing_sequence          in     number
31   ,p_txn_category_attribute_id    in     number
32   ,p_from_value                   in     varchar2
33   ,p_to_value                     in     varchar2  default null
34   ,p_enabled_flag                 in     varchar2  default null
35   ,p_required_flag                in     varchar2  default null
36   ,p_exclude_flag                 in     varchar2  default null
37   ,p_stat_situation_rule_id          out nocopy number
38   ,p_object_version_number           out nocopy number
39   ,p_return_status                   out nocopy varchar2
40   );
41 -- ----------------------------------------------------------------------------
42 -- |----------------------< delete_stat_situation_rule >----------------------|
43 -- ----------------------------------------------------------------------------
44 -- {Start of comments}
45 --
46 -- Description:
47 --  This procedure is the self-service wrapper procedure to the following
48 --  API: pqh_fr_stat_sit_rules_api.delete_stat_situation_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_stat_situation_rule
65   (p_validate                     in     number    default hr_api.g_false_num
66   ,p_stat_situation_rule_id       in     number
67   ,p_object_version_number        in     number
68   ,p_return_status                   out nocopy varchar2
69   );
70 -- ----------------------------------------------------------------------------
71 -- |----------------------< update_stat_situation_rule >----------------------|
72 -- ----------------------------------------------------------------------------
73 -- {Start of comments}
74 --
75 -- Description:
76 --  This procedure is the self-service wrapper procedure to the following
77 --  API: pqh_fr_stat_sit_rules_api.update_stat_situation_rule
78 --
79 -- Pre-requisites
80 --  All 'IN' parameters to this procedure have been appropriately derived.
81 --
82 -- Post Success:
83 --  p_return_status will return value indicating success.
84 --
85 -- Post Failure:
86 --  p_return_status will return value indication failure.
87 --
88 -- Access Status:
89 --  Internal Development use only.
90 --
91 -- {End of comments}
92 -- ----------------------------------------------------------------------------
93 PROCEDURE update_stat_situation_rule
94   (p_validate                     in     number    default hr_api.g_false_num
95   ,p_effective_date               in     date      default hr_api.g_date
96   ,p_stat_situation_rule_id       in     number
97   ,p_object_version_number        in out nocopy number
98   ,p_statutory_situation_id       in     number    default hr_api.g_number
99   ,p_processing_sequence          in     number    default hr_api.g_number
100   ,p_txn_category_attribute_id    in     number    default hr_api.g_number
101   ,p_from_value                   in     varchar2  default hr_api.g_varchar2
102   ,p_to_value                     in     varchar2  default hr_api.g_varchar2
103   ,p_enabled_flag                 in     varchar2  default hr_api.g_varchar2
104   ,p_required_flag                in     varchar2  default hr_api.g_varchar2
105   ,p_exclude_flag                 in     varchar2  default hr_api.g_varchar2
106   ,p_return_status                   out nocopy varchar2
107   );
108 end pqh_fr_stat_sit_rules_swi;