DBA Data[Home] [Help]

PACKAGE BODY: APPS.OTA_CMS_SHD

Source


1 Package Body ota_cms_shd as
2 /* $Header: otcmsrhi.pkb 120.0 2005/06/24 07:51 appldev noship $ */
3 --
4 -- ----------------------------------------------------------------------------
8 g_package  varchar2(33) := '  ota_cms_shd.';  -- Global package name
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
9 --
10 -- ----------------------------------------------------------------------------
11 -- |---------------------------< constraint_error >---------------------------|
12 -- ----------------------------------------------------------------------------
13 Procedure constraint_error
14   (p_constraint_name in all_constraints.constraint_name%TYPE
15   ) Is
16 --
17   l_proc        varchar2(72) := g_package||'constraint_error';
18 --
19 Begin
20   --
21   If (p_constraint_name = 'OTA_CHAT_MESSAGES_PK') Then
22     fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
23     fnd_message.set_token('PROCEDURE', l_proc);
24     fnd_message.set_token('STEP','5');
25     fnd_message.raise_error;
26   Else
27     fnd_message.set_name('PAY', 'HR_7877_API_INVALID_CONSTRAINT');
28     fnd_message.set_token('PROCEDURE', l_proc);
29     fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
30     fnd_message.raise_error;
31   End If;
32   --
33 End constraint_error;
34 --
35 -- ----------------------------------------------------------------------------
36 -- |-----------------------------< api_updating >-----------------------------|
37 -- ----------------------------------------------------------------------------
38 Function api_updating
39   (p_chat_message_id                      in     number
40   ,p_object_version_number                in     number
41   )
42   Return Boolean Is
43   --
44   --
45   -- Cursor selects the 'current' row from the HR Schema
46   --
47   Cursor C_Sel1 is
48     select
49        chat_message_id
50       ,chat_id
51       ,business_group_id
52       ,person_id
53       ,contact_id
54       ,target_person_id
55       ,target_contact_id
56       ,message_text
57       ,object_version_number
58     from        ota_chat_messages
59     where       chat_message_id = p_chat_message_id;
60   --
61   l_fct_ret     boolean;
62   --
63 Begin
64   --
65   If (p_chat_message_id is null and
66       p_object_version_number is null
67      ) Then
68     --
69     -- One of the primary key arguments is null therefore we must
70     -- set the returning function value to false
71     --
72     l_fct_ret := false;
73   Else
74     If (p_chat_message_id
75         = ota_cms_shd.g_old_rec.chat_message_id and
76         p_object_version_number
77         = ota_cms_shd.g_old_rec.object_version_number
78        ) Then
79       --
80       -- The g_old_rec is current therefore we must
81       -- set the returning function to true
82       --
83       l_fct_ret := true;
84     Else
85       --
86       -- Select the current row into g_old_rec
87       --
88       Open C_Sel1;
89       Fetch C_Sel1 Into ota_cms_shd.g_old_rec;
90       If C_Sel1%notfound Then
91         Close C_Sel1;
92         --
93         -- The primary key is invalid therefore we must error
94         --
95         fnd_message.set_name('PAY', 'HR_7220_INVALID_PRIMARY_KEY');
96         fnd_message.raise_error;
97       End If;
98       Close C_Sel1;
99       If (p_object_version_number
100           <> ota_cms_shd.g_old_rec.object_version_number) Then
101         fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
102         fnd_message.raise_error;
103       End If;
104       l_fct_ret := true;
105     End If;
106   End If;
107   Return (l_fct_ret);
108 --
109 End api_updating;
110 --
111 -- ----------------------------------------------------------------------------
112 -- |---------------------------------< lck >----------------------------------|
113 -- ----------------------------------------------------------------------------
114 Procedure lck
115   (p_chat_message_id                      in     number
116   ,p_object_version_number                in     number
117   ) is
118 --
119 -- Cursor selects the 'current' row from the HR Schema
120 --
121   Cursor C_Sel1 is
122     select
123        chat_message_id
124       ,chat_id
125       ,business_group_id
126       ,person_id
127       ,contact_id
128       ,target_person_id
129       ,target_contact_id
130       ,message_text
131       ,object_version_number
132     from        ota_chat_messages
133     where       chat_message_id = p_chat_message_id
134     for update nowait;
135 --
136   l_proc        varchar2(72) := g_package||'lck';
137 --
138 Begin
139   hr_utility.set_location('Entering:'||l_proc, 5);
140   --
141   hr_api.mandatory_arg_error
142     (p_api_name           => l_proc
143     ,p_argument           => 'CHAT_MESSAGE_ID'
144     ,p_argument_value     => p_chat_message_id
145     );
146   hr_utility.set_location(l_proc,6);
147   hr_api.mandatory_arg_error
148     (p_api_name           => l_proc
149     ,p_argument           => 'OBJECT_VERSION_NUMBER'
150     ,p_argument_value     => p_object_version_number
151     );
152   --
153   Open  C_Sel1;
154   Fetch C_Sel1 Into ota_cms_shd.g_old_rec;
155   If C_Sel1%notfound then
156     Close C_Sel1;
157     --
158     -- The primary key is invalid therefore we must error
159     --
160     fnd_message.set_name('PAY', 'HR_7220_INVALID_PRIMARY_KEY');
161     fnd_message.raise_error;
162   End If;
166         fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
163   Close C_Sel1;
164   If (p_object_version_number
165       <> ota_cms_shd.g_old_rec.object_version_number) Then
167         fnd_message.raise_error;
168   End If;
169   --
170   hr_utility.set_location(' Leaving:'||l_proc, 10);
171   --
172   -- We need to trap the ORA LOCK exception
173   --
174 Exception
175   When HR_Api.Object_Locked then
176     --
177     -- The object is locked therefore we need to supply a meaningful
178     -- error message.
179     --
180     fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
181     fnd_message.set_token('TABLE_NAME', 'ota_chat_messages');
182     fnd_message.raise_error;
183 End lck;
184 --
185 -- ----------------------------------------------------------------------------
186 -- |-----------------------------< convert_args >-----------------------------|
187 -- ----------------------------------------------------------------------------
188 Function convert_args
189   (p_chat_message_id                in number
190   ,p_chat_id                        in number
191   ,p_business_group_id              in number
192   ,p_person_id                      in number
193   ,p_contact_id                     in number
194   ,p_target_person_id               in number
195   ,p_target_contact_id              in number
196   ,p_message_text                   in varchar2
197   ,p_object_version_number          in number
198   )
199   Return g_rec_type is
200 --
201   l_rec   g_rec_type;
202 --
203 Begin
204   --
205   -- Convert arguments into local l_rec structure.
206   --
207   l_rec.chat_message_id                  := p_chat_message_id;
208   l_rec.chat_id                          := p_chat_id;
209   l_rec.business_group_id                := p_business_group_id;
210   l_rec.person_id                        := p_person_id;
211   l_rec.contact_id                       := p_contact_id;
212   l_rec.target_person_id                 := p_target_person_id;
213   l_rec.target_contact_id                := p_target_contact_id;
214   l_rec.message_text                     := p_message_text;
215   l_rec.object_version_number            := p_object_version_number;
216   --
217   -- Return the plsql record structure.
218   --
219   Return(l_rec);
220 --
221 End convert_args;
222 --
223 end ota_cms_shd;