DBA Data[Home] [Help]

PACKAGE: APPS.PAY_AU_PROCESSES_SWI

Source


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