DBA Data[Home] [Help]

PACKAGE: APPS.OTA_PVT_FRM_THREAD_USERS_SWI

Source


1 Package ota_pvt_frm_thread_users_swi AUTHID CURRENT_USER As
2 /* $Header: otftuswi.pkh 120.1 2005/08/10 17:51 asud noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |----------------------< create_pvt_frm_thread_user >----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: ota_pvt_frm_thread_users_api.create_pvt_frm_thread_user
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_pvt_frm_thread_user
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_forum_thread_id              in     number
30   ,p_forum_id                     in     number
31   ,p_person_id                    in     number
32   ,p_contact_id                   in     number
33   ,p_business_group_id            in     number
34   ,p_author_person_id             in     number    default null
35   ,p_author_contact_id            in     number    default null
36   ,p_object_version_number           out nocopy number
37   ,p_return_status                   out nocopy varchar2
38   );
39 -- ----------------------------------------------------------------------------
40 -- |----------------------< update_pvt_frm_thread_user >----------------------|
41 -- ----------------------------------------------------------------------------
42 -- {Start of comments}
43 --
44 -- Description:
45 --  This procedure is the self-service wrapper procedure to the following
46 --  API: ota_pvt_frm_thread_users_api.update_pvt_frm_thread_user
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_pvt_frm_thread_user
63   (p_validate                     in     number    default hr_api.g_false_num
64   ,p_effective_date               in     date
65   ,p_forum_thread_id              in     number
66   ,p_forum_id                     in     number
67   ,p_person_id                    in     number
68   ,p_contact_id                   in     number
69   ,p_business_group_id            in     number
70   ,p_author_person_id             in     number    default null
71   ,p_author_contact_id            in     number    default null
72   ,p_object_version_number        in out nocopy number
73   ,p_return_status                   out nocopy varchar2
74 );
75 
76 -- ----------------------------------------------------------------------------
77 -- |----------------------< delete_pvt_frm_thread_user >----------------------|
78 -- ----------------------------------------------------------------------------
79 -- {Start of comments}
80 --
81 -- Description:
82 --  This procedure is the self-service wrapper procedure to the following
83 --  API: ota_pvt_frm_thread_users_api.delete_pvt_frm_thread_user
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_pvt_frm_thread_user
100   (p_validate                     in     number    default hr_api.g_false_num
101   ,p_forum_thread_id              in     number
102   ,p_forum_id                     in     number
103   ,p_person_id                    in     number
104   ,p_contact_id                   in     number
105   ,p_object_version_number        in     number
106   ,p_return_status                   out nocopy varchar2
107   );
108  end ota_pvt_frm_thread_users_swi;