DBA Data[Home] [Help]

PACKAGE: APPS.OTA_CHAT_USER_SWI

Source


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