DBA Data[Home] [Help]

PACKAGE: APPS.PAY_AU_MODULES_SWI

Source


1 Package pay_au_modules_swi AUTHID CURRENT_USER As
2 /* $Header: pyamoswi.pkh 120.0 2005/05/29 02:55 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |---------------------------< create_au_module >---------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pay_au_modules_api.create_au_module
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_au_module
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_name                         in     varchar2
29   ,p_enabled_flag                 in     varchar2
30   ,p_module_type_id               in     number
31   ,p_business_group_id            in     number
32   ,p_legislation_code             in     varchar2
33   ,p_description                  in     varchar2
34   ,p_package_name                 in     varchar2
35   ,p_procedure_function_name      in     varchar2
36   ,p_formula_name                 in     varchar2
37   ,p_module_id                       out nocopy number
38   ,p_object_version_number           out nocopy number
39   ,p_return_status                   out nocopy varchar2
40   );
41 -- ----------------------------------------------------------------------------
42 -- |---------------------------< delete_au_module >---------------------------|
43 -- ----------------------------------------------------------------------------
44 -- {Start of comments}
45 --
46 -- Description:
47 --  This procedure is the self-service wrapper procedure to the following
48 --  API: pay_au_modules_api.delete_au_module
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_au_module
65   (p_validate                     in     number    default hr_api.g_false_num
66   ,p_module_id                    in     number
67   ,p_object_version_number        in out nocopy number
68   ,p_return_status                   out nocopy varchar2
69   );
70 -- ----------------------------------------------------------------------------
71 -- |---------------------------< update_au_module >---------------------------|
72 -- ----------------------------------------------------------------------------
73 -- {Start of comments}
74 --
75 -- Description:
76 --  This procedure is the self-service wrapper procedure to the following
77 --  API: pay_au_modules_api.update_au_module
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_au_module
94   (p_validate                     in     number    default hr_api.g_false_num
95   ,p_module_id                    in     number
96   ,p_name                         in     varchar2  default hr_api.g_varchar2
97   ,p_enabled_flag                 in     varchar2  default hr_api.g_varchar2
98   ,p_module_type_id               in     number
99   ,p_business_group_id            in     number
100   ,p_legislation_code             in     varchar2  default hr_api.g_varchar2
101   ,p_description                  in     varchar2  default hr_api.g_varchar2
102   ,p_package_name                 in     varchar2  default hr_api.g_varchar2
103   ,p_procedure_function_name      in     varchar2  default hr_api.g_varchar2
104   ,p_formula_name                 in     varchar2  default hr_api.g_varchar2
105   ,p_object_version_number        in out nocopy number
106   ,p_return_status                   out nocopy varchar2
107   );
108  end pay_au_modules_swi;