DBA Data[Home] [Help]

PACKAGE: APPS.PAY_AU_MODULE_PARAMETERS_SWI

Source


1 Package pay_au_module_parameters_swi As
2 /* $Header: pyampswi.pkh 120.0 2005/05/29 02:56 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |----------------------< create_au_module_parameter >----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pay_au_module_parameters_api.create_au_module_parameter
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_parameter
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_module_id                    in     number
29   ,p_internal_name                in     varchar2  default null
30   ,p_data_type                    in     varchar2  default null
31   ,p_input_flag                   in     varchar2  default null
32   ,p_context_flag                 in     varchar2  default null
33   ,p_output_flag                  in     varchar2  default null
34   ,p_result_flag                  in     varchar2  default null
35   ,p_error_message_flag           in     varchar2  default null
36   ,p_enabled_flag                 in     varchar2  default null
37   ,p_function_return_flag         in     varchar2  default null
38   ,p_external_name                in     varchar2  default null
39   ,p_database_item_name           in     varchar2  default null
40   ,p_constant_value               in     varchar2  default null
41   ,p_module_parameter_id             out nocopy number
42   ,p_object_version_number           out nocopy number
43   ,p_return_status                   out nocopy varchar2
44   );
45 -- ----------------------------------------------------------------------------
46 -- |----------------------< delete_au_module_parameter >----------------------|
47 -- ----------------------------------------------------------------------------
48 -- {Start of comments}
49 --
50 -- Description:
51 --  This procedure is the self-service wrapper procedure to the following
52 --  API: pay_au_module_parameters_api.delete_au_module_parameter
53 --
54 -- Pre-requisites
55 --  All 'IN' parameters to this procedure have been appropriately derived.
56 --
57 -- Post Success:
58 --  p_return_status will return value indicating success.
59 --
60 -- Post Failure:
61 --  p_return_status will return value indication failure.
62 --
63 -- Access Status:
64 --  Internal Development use only.
65 --
66 -- {End of comments}
67 -- ----------------------------------------------------------------------------
68 PROCEDURE delete_au_module_parameter
69   (p_validate                     in     number    default hr_api.g_false_num
70   ,p_module_parameter_id          in     number
71   ,p_object_version_number        in out nocopy number
72   ,p_return_status                   out nocopy varchar2
73   );
74 -- ----------------------------------------------------------------------------
75 -- |----------------------< update_au_module_parameter >----------------------|
76 -- ----------------------------------------------------------------------------
77 -- {Start of comments}
78 --
79 -- Description:
80 --  This procedure is the self-service wrapper procedure to the following
81 --  API: pay_au_module_parameters_api.update_au_module_parameter
82 --
83 -- Pre-requisites
84 --  All 'IN' parameters to this procedure have been appropriately derived.
85 --
86 -- Post Success:
87 --  p_return_status will return value indicating success.
88 --
89 -- Post Failure:
90 --  p_return_status will return value indication failure.
91 --
92 -- Access Status:
93 --  Internal Development use only.
94 --
95 -- {End of comments}
96 -- ----------------------------------------------------------------------------
97 PROCEDURE update_au_module_parameter
98   (p_validate                     in     number    default hr_api.g_false_num
99   ,p_module_parameter_id          in     number
100   ,p_module_id                    in     number
101   ,p_internal_name                in     varchar2  default hr_api.g_varchar2
102   ,p_data_type                    in     varchar2  default hr_api.g_varchar2
103   ,p_input_flag                   in     varchar2  default hr_api.g_varchar2
104   ,p_context_flag                 in     varchar2  default hr_api.g_varchar2
105   ,p_output_flag                  in     varchar2  default hr_api.g_varchar2
106   ,p_result_flag                  in     varchar2  default hr_api.g_varchar2
107   ,p_error_message_flag           in     varchar2  default hr_api.g_varchar2
108   ,p_enabled_flag                 in     varchar2  default hr_api.g_varchar2
109   ,p_function_return_flag         in     varchar2  default hr_api.g_varchar2
110   ,p_external_name                in     varchar2  default hr_api.g_varchar2
111   ,p_database_item_name           in     varchar2  default hr_api.g_varchar2
112   ,p_constant_value               in     varchar2  default hr_api.g_varchar2
113   ,p_object_version_number        in out nocopy number
114   ,p_return_status                   out nocopy varchar2
115   );
116  end pay_au_module_parameters_swi;