DBA Data[Home] [Help]

PACKAGE: APPS.PAY_AU_PROCESS_PARAMETERS_SWI

Source


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