DBA Data[Home] [Help]

PACKAGE: APPS.PER_RI_VIEW_REPORT_SWI

Source


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