DBA Data[Home] [Help]

PACKAGE: APPS.PQH_RULE_ATTRIBUTES_SWI

Source


1 Package pqh_rule_attributes_swi AUTHID CURRENT_USER As
2 /* $Header: pqrlaswi.pkh 115.0 2003/01/26 01:40:58 rpasapul noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-------------------------< delete_rule_attribute >------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pqh_rule_attributes_api.delete_rule_attribute
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_rule_attribute
27   (p_rule_attribute_id            in     number
28   ,p_object_version_number        in     number
29   ,p_return_status                   out nocopy varchar2
30   );
31 -- ----------------------------------------------------------------------------
32 -- |-------------------------< insert_rule_attribute >------------------------|
33 -- ----------------------------------------------------------------------------
34 -- {Start of comments}
35 --
36 -- Description:
37 --  This procedure is the self-service wrapper procedure to the following
38 --  API: pqh_rule_attributes_api.insert_rule_attribute
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_rule_attribute
55   (p_rule_set_id                  in     number
56   ,p_attribute_code               in     varchar2
57   ,p_operation_code               in     varchar2
58   ,p_attribute_value              in     varchar2
59   ,p_rule_attribute_id               out nocopy number
60   ,p_object_version_number           out nocopy number
61   ,p_return_status                   out nocopy varchar2
62   );
63 -- ----------------------------------------------------------------------------
64 -- |-------------------------< update_rule_attribute >------------------------|
65 -- ----------------------------------------------------------------------------
66 -- {Start of comments}
67 --
68 -- Description:
69 --  This procedure is the self-service wrapper procedure to the following
70 --  API: pqh_rule_attributes_api.update_rule_attribute
71 --
72 -- Pre-requisites
73 --  All 'IN' parameters to this procedure have been appropriately derived.
74 --
75 -- Post Success:
76 --  p_return_status will return value indicating success.
77 --
78 -- Post Failure:
79 --  p_return_status will return value indication failure.
80 --
81 -- Access Status:
82 --  Internal Development use only.
83 --
84 -- {End of comments}
85 -- ----------------------------------------------------------------------------
86 PROCEDURE update_rule_attribute
87   (p_rule_attribute_id            in     number
88   ,p_object_version_number        in out nocopy number
89   ,p_rule_set_id                  in     number    default hr_api.g_number
90   ,p_attribute_code               in     varchar2  default hr_api.g_varchar2
91   ,p_operation_code               in     varchar2  default hr_api.g_varchar2
92   ,p_attribute_value              in     varchar2  default hr_api.g_varchar2
93   ,p_return_status                   out nocopy varchar2
94   );
95 end pqh_rule_attributes_swi;