DBA Data[Home] [Help]

PACKAGE: APPS.OTA_CHAT_MESSAGE_SWI

Source


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