DBA Data[Home] [Help]

PACKAGE: APPS.OTA_FORUM_THREAD_SWI

Source


1 Package ota_forum_thread_swi AUTHID CURRENT_USER As
2 /* $Header: otftsswi.pkh 120.2 2005/09/20 14:36 asud noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |--------------------------< create_forum_thread >-------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: ota_forum_thread_api.create_forum_thread
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_thread
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_forum_id                     in     number
30   ,p_business_group_id            in     number
31   ,p_subject                      in     varchar2
32   ,p_private_thread_flag          in     varchar2
33   ,p_last_post_date               in     date      default null
34   ,p_reply_count                  in     number    default null
35   ,p_forum_thread_id                 in  number
36   ,p_object_version_number           out nocopy number
37   ,p_return_status                   out nocopy varchar2
38   );
39 -- ----------------------------------------------------------------------------
40 -- |--------------------------< update_forum_thread >-------------------------|
41 -- ----------------------------------------------------------------------------
42 -- {Start of comments}
43 --
44 -- Description:
45 --  This procedure is the self-service wrapper procedure to the following
46 --  API: ota_forum_thread_api.update_forum_thread
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 update_forum_thread
63   (p_validate                     in     number    default hr_api.g_false_num
64   ,p_effective_date               in     date
65   ,p_forum_id                     in     number
66   ,p_business_group_id            in     number
67   ,p_subject                      in     varchar2
68   ,p_private_thread_flag          in     varchar2
69   ,p_last_post_date               in     date      default hr_api.g_date
70   ,p_reply_count                  in     number    default hr_api.g_number
71   ,p_forum_thread_id              in  number
72   ,p_object_version_number        in out nocopy number
73   ,p_return_status                   out nocopy varchar2
74 );
75 
76 -- ----------------------------------------------------------------------------
77 -- |--------------------------< delete_forum_thread >-------------------------|
78 -- ----------------------------------------------------------------------------
79 -- {Start of comments}
80 --
81 -- Description:
82 --  This procedure is the self-service wrapper procedure to the following
83 --  API: ota_forum_thread_api.delete_forum_thread
84 --
85 -- Pre-requisites
86 --  All 'IN' parameters to this procedure have been appropriately derived.
87 --
88 -- Post Success:
89 --  p_return_status will return value indicating success.
90 --
91 -- Post Failure:
92 --  p_return_status will return value indication failure.
93 --
94 -- Access Status:
95 --  Internal Development use only.
96 --
97 -- {End of comments}
98 -- ----------------------------------------------------------------------------
99 PROCEDURE delete_forum_thread
100   (p_validate                     in     number    default hr_api.g_false_num
101   ,p_forum_thread_id              in     number
102   ,p_object_version_number        in     number
103   ,p_return_status                   out nocopy varchar2
104   );
105  end ota_forum_thread_swi;