DBA Data[Home] [Help]

PACKAGE: APPS.PQP_ERG_SWI

Source


1 Package pqp_erg_swi AUTHID CURRENT_USER As
2 /* $Header: pqexgswi.pkh 115.0 2003/02/14 02:03:49 rpinjala noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |------------------------< create_exception_group >------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pqp_erg_api.create_exception_group
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_exception_group
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_exception_group_name         in     varchar2  default null
29   ,p_exception_report_id          in     number
30   ,p_legislation_code             in     varchar2  default null
31   ,p_business_group_id            in     number    default null
32   ,p_consolidation_set_id         in     number    default null
33   ,p_payroll_id                   in     number    default null
34   ,p_exception_group_id              out nocopy number
35   ,p_object_version_number           out nocopy number
36   ,p_output_format                in     varchar2
37   ,p_return_status                   out nocopy varchar2
38   );
39 -- ----------------------------------------------------------------------------
40 -- |------------------------< delete_exception_group >------------------------|
41 -- ----------------------------------------------------------------------------
42 -- {Start of comments}
43 --
44 -- Description:
45 --  This procedure is the self-service wrapper procedure to the following
46 --  API: pqp_erg_api.delete_exception_group
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_exception_group
63   (p_validate                     in     number    default hr_api.g_false_num
64   ,p_exception_group_id           in     number
65   ,p_object_version_number        in     number
66   ,p_return_status                   out nocopy varchar2
67   );
68 -- ----------------------------------------------------------------------------
69 -- |------------------------< update_exception_group >------------------------|
70 -- ----------------------------------------------------------------------------
71 -- {Start of comments}
72 --
73 -- Description:
74 --  This procedure is the self-service wrapper procedure to the following
75 --  API: pqp_erg_api.update_exception_group
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_exception_group
92   (p_validate                     in     number    default hr_api.g_false_num
93   ,p_exception_group_id           in     number    default hr_api.g_number
94   ,p_exception_group_name         in     varchar2  default hr_api.g_varchar2
95   ,p_exception_report_id          in     number    default hr_api.g_number
96   ,p_legislation_code             in     varchar2  default hr_api.g_varchar2
97   ,p_business_group_id            in     number    default hr_api.g_number
98   ,p_consolidation_set_id         in     number    default hr_api.g_number
99   ,p_payroll_id                   in     number    default hr_api.g_number
100   ,p_object_version_number        in out nocopy number
101   ,p_output_format                in     varchar2  default hr_api.g_varchar2
102   ,p_return_status                   out nocopy varchar2
103   );
104 end pqp_erg_swi;