DBA Data[Home] [Help]

PACKAGE: APPS.OTA_OPEN_FC_ENROLLMENT_SWI

Source


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