DBA Data[Home] [Help]

PACKAGE: APPS.OTA_FORUM_SWI

Source


1 Package ota_forum_swi AUTHID CURRENT_USER As
2 /* $Header: otfrmswi.pkh 120.0 2005/06/24 07:57 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-----------------------------< create_forum >-----------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: ota_forum_api.create_forum
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_forum
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_name                         in     varchar2
30   ,p_description                  in     varchar2  default null
31   ,p_business_group_id            in     number
32   ,p_start_date_active            in     date      default null
33   ,p_end_date_active              in     date      default null
34   ,p_message_type_flag            in     varchar2  default null
35   ,p_allow_html_flag              in     varchar2  default null
36   ,p_allow_attachment_flag        in     varchar2  default null
37   ,p_auto_notification_flag       in     varchar2  default null
38   ,p_public_flag                  in     varchar2  default null
39   ,p_forum_id                        in  number
40   ,p_object_version_number           out nocopy number
41   ,p_return_status                   out nocopy varchar2
42   );
43 -- ----------------------------------------------------------------------------
44 -- |-----------------------------< update_forum >-----------------------------|
45 -- ----------------------------------------------------------------------------
46 -- {Start of comments}
47 --
48 -- Description:
49 --  This procedure is the self-service wrapper procedure to the following
50 --  API: ota_forum_api.update_forum
51 --
52 -- Pre-requisites
53 --  All 'IN' parameters to this procedure have been appropriately derived.
54 --
55 -- Post Success:
56 --  p_return_status will return value indicating success.
57 --
58 -- Post Failure:
59 --  p_return_status will return value indication failure.
60 --
61 -- Access Status:
62 --  Internal Development use only.
63 --
64 -- {End of comments}
65 -- ----------------------------------------------------------------------------
66 PROCEDURE update_forum
67   (p_validate                     in     number    default hr_api.g_false_num
68   ,p_effective_date               in     date
69   ,p_name                         in     varchar2
70   ,p_description                  in     varchar2
71   ,p_business_group_id            in     number
72   ,p_start_date_active            in     date      default hr_api.g_date
73   ,p_end_date_active              in     date      default hr_api.g_date
74   ,p_message_type_flag            in     varchar2  default hr_api.g_varchar2
75   ,p_allow_html_flag              in     varchar2  default hr_api.g_varchar2
76   ,p_allow_attachment_flag        in     varchar2  default hr_api.g_varchar2
77   ,p_auto_notification_flag       in     varchar2  default hr_api.g_varchar2
78   ,p_public_flag                  in     varchar2  default hr_api.g_varchar2
79   ,p_forum_id                     in     number
80   ,p_object_version_number        in out nocopy number
81   ,p_return_status                   out nocopy varchar2
82   );
83 -- ----------------------------------------------------------------------------
84 -- |-----------------------------< delete_forum >-----------------------------|
85 -- ----------------------------------------------------------------------------
86 -- {Start of comments}
87 --
88 -- Description:
89 --  This procedure is the self-service wrapper procedure to the following
90 --  API: ota_forum_api.delete_forum
91 --
92 -- Pre-requisites
93 --  All 'IN' parameters to this procedure have been appropriately derived.
94 --
95 -- Post Success:
96 --  p_return_status will return value indicating success.
97 --
98 -- Post Failure:
99 --  p_return_status will return value indication failure.
100 --
101 -- Access Status:
102 --  Internal Development use only.
103 --
104 -- {End of comments}
105 -- ----------------------------------------------------------------------------
106 PROCEDURE delete_forum
107   (p_validate                     in     number    default hr_api.g_false_num
108   ,p_forum_id                     in     number
109   ,p_object_version_number        in     number
110   ,p_return_status                   out nocopy varchar2
111   );
112  end ota_forum_swi;