DBA Data[Home] [Help]

PACKAGE: APPS.OTA_FRM_NOTIF_SUBSCRIBER_SWI

Source


1 Package ota_frm_notif_subscriber_swi AUTHID CURRENT_USER As
2 /* $Header: otfnsswi.pkh 120.0 2005/06/24 07:56 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |----------------------< create_frm_notif_sub---------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: ota_frm_notif_subscriber_api.create_frm_notif_subscriber
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_frm_notif_sub
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_business_group_id            in     number
30   ,p_forum_id                     in     number
31   ,p_person_id                    in     number
32   ,p_contact_id                   in     number
33   ,p_object_version_number           out nocopy number
34   ,p_return_status                   out nocopy varchar2
35   );
36 -- ----------------------------------------------------------------------------
37 -- |----------------------< update_frm_notif_sub >---------------------|
38 -- ----------------------------------------------------------------------------
39 -- {Start of comments}
40 --
41 -- Description:
42 --  This procedure is the self-service wrapper procedure to the following
43 --  API: ota_frm_notif_subscriber_api.update_frm_notif_subscriber
44 --
45 -- Pre-requisites
46 --  All 'IN' parameters to this procedure have been appropriately derived.
47 --
48 -- Post Success:
49 --  p_return_status will return value indicating success.
50 --
51 -- Post Failure:
52 --  p_return_status will return value indication failure.
53 --
54 -- Access Status:
55 --  Internal Development use only.
56 --
57 -- {End of comments}
58 -- ----------------------------------------------------------------------------
59 PROCEDURE update_frm_notif_sub
60   (p_validate                     in     number    default hr_api.g_false_num
61   ,p_effective_date               in     date
62   ,p_forum_id                     in     number    default hr_api.g_number
63   ,p_person_id                    in     number    default hr_api.g_number
64   ,p_contact_id                   in     number    default hr_api.g_number
65   ,p_object_version_number        in out nocopy number
66   ,p_business_group_id            in     number    default hr_api.g_number
67   ,p_return_status                   out nocopy varchar2
68   );
69 -- ----------------------------------------------------------------------------
70 -- |----------------------< delete_frm_notif_sub >---------------------|
71 -- ----------------------------------------------------------------------------
72 -- {Start of comments}
73 --
74 -- Description:
75 --  This procedure is the self-service wrapper procedure to the following
76 --  API: ota_frm_notif_subscriber_api.delete_frm_notif_subscriber
77 --
78 -- Pre-requisites
79 --  All 'IN' parameters to this procedure have been appropriately derived.
80 --
81 -- Post Success:
82 --  p_return_status will return value indicating success.
83 --
84 -- Post Failure:
85 --  p_return_status will return value indication failure.
86 --
87 -- Access Status:
88 --  Internal Development use only.
89 --
90 -- {End of comments}
91 -- ----------------------------------------------------------------------------
92 PROCEDURE delete_frm_notif_sub
93   (p_validate                     in     number    default hr_api.g_false_num
94   ,p_forum_id                     in     number
95   ,p_person_id                    in     number
96   ,p_contact_id                   in     number
97   ,p_object_version_number        in     number
98   ,p_return_status                   out nocopy varchar2
99   );
100  end ota_frm_notif_subscriber_swi;