DBA Data[Home] [Help]

PACKAGE: APPS.PAY_AU_MODULE_TYPES_SWI

Source


1 Package pay_au_module_types_swi AUTHID CURRENT_USER As
2 /* $Header: pyamtswi.pkh 120.0 2005/05/29 02:56 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-------------------------< create_au_module_type >------------------------|
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_types_api.create_au_module_type
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_type
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_name                         in     varchar2
29   ,p_enabled_flag                 in     varchar2
30   ,p_description                  in     varchar2  default null
31   ,p_module_type_id                  out nocopy number
32   ,p_object_version_number           out nocopy number
33   ,p_return_status                   out nocopy varchar2
34   );
35 -- ----------------------------------------------------------------------------
36 -- |-------------------------< delete_au_module_type >------------------------|
37 -- ----------------------------------------------------------------------------
38 -- {Start of comments}
39 --
40 -- Description:
41 --  This procedure is the self-service wrapper procedure to the following
42 --  API: pay_au_module_types_api.delete_au_module_type
43 --
44 -- Pre-requisites
45 --  All 'IN' parameters to this procedure have been appropriately derived.
46 --
47 -- Post Success:
48 --  p_return_status will return value indicating success.
49 --
50 -- Post Failure:
51 --  p_return_status will return value indication failure.
52 --
53 -- Access Status:
54 --  Internal Development use only.
55 --
56 -- {End of comments}
57 -- ----------------------------------------------------------------------------
58 PROCEDURE delete_au_module_type
59   (p_validate                     in     number    default hr_api.g_false_num
60   ,p_module_type_id               in     number
61   ,p_object_version_number        in out nocopy number
62   ,p_return_status                   out nocopy varchar2
63   );
64 -- ----------------------------------------------------------------------------
65 -- |-------------------------< update_au_module_type >------------------------|
66 -- ----------------------------------------------------------------------------
67 -- {Start of comments}
68 --
69 -- Description:
70 --  This procedure is the self-service wrapper procedure to the following
71 --  API: pay_au_module_types_api.update_au_module_type
72 --
73 -- Pre-requisites
74 --  All 'IN' parameters to this procedure have been appropriately derived.
75 --
76 -- Post Success:
77 --  p_return_status will return value indicating success.
78 --
79 -- Post Failure:
80 --  p_return_status will return value indication failure.
81 --
82 -- Access Status:
83 --  Internal Development use only.
84 --
85 -- {End of comments}
86 -- ----------------------------------------------------------------------------
87 PROCEDURE update_au_module_type
88   (p_validate                     in     number    default hr_api.g_false_num
89   ,p_module_type_id               in     number
90   ,p_name                         in     varchar2  default hr_api.g_varchar2
91   ,p_enabled_flag                 in     varchar2  default hr_api.g_varchar2
92   ,p_description                  in     varchar2  default hr_api.g_varchar2
93   ,p_object_version_number        in out nocopy number
94   ,p_return_status                   out nocopy varchar2
95   );
96  end pay_au_module_types_swi;