DBA Data[Home] [Help]

APPS.IRC_IOF_SHD dependencies on IRC_IOF_SHD

Line 1: Package Body irc_iof_shd as

1: Package Body irc_iof_shd as
2: /* $Header: iriofrhi.pkb 120.20 2011/04/08 12:04:09 amikukum ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' irc_iof_shd.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' irc_iof_shd.'; -- Global package name
9: --
10: -- ----------------------------------------------------------------------------
11: -- |---------------------------< constraint_error >---------------------------|
12: -- ----------------------------------------------------------------------------

Line 142: = irc_iof_shd.g_old_rec.offer_id and

138: --
139: l_fct_ret := false;
140: Else
141: If (p_offer_id
142: = irc_iof_shd.g_old_rec.offer_id and
143: p_object_version_number
144: = irc_iof_shd.g_old_rec.object_version_number
145: ) Then
146: --

Line 144: = irc_iof_shd.g_old_rec.object_version_number

140: Else
141: If (p_offer_id
142: = irc_iof_shd.g_old_rec.offer_id and
143: p_object_version_number
144: = irc_iof_shd.g_old_rec.object_version_number
145: ) Then
146: --
147: -- The g_old_rec is current therefore we must
148: -- set the returning function to true

Line 156: Fetch C_Sel1 Into irc_iof_shd.g_old_rec;

152: --
153: -- Select the current row into g_old_rec
154: --
155: Open C_Sel1;
156: Fetch C_Sel1 Into irc_iof_shd.g_old_rec;
157: If C_Sel1%notfound Then
158: Close C_Sel1;
159: --
160: -- The primary key is invalid therefore we must error

Line 167: <> irc_iof_shd.g_old_rec.object_version_number) Then

163: fnd_message.raise_error;
164: End If;
165: Close C_Sel1;
166: If (p_object_version_number
167: <> irc_iof_shd.g_old_rec.object_version_number) Then
168: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
169: fnd_message.raise_error;
170: End If;
171: l_fct_ret := true;

Line 263: Fetch C_Sel1 Into irc_iof_shd.g_old_rec;

259: ,p_argument_value => p_object_version_number
260: );
261: --
262: Open C_Sel1;
263: Fetch C_Sel1 Into irc_iof_shd.g_old_rec;
264: If C_Sel1%notfound then
265: Close C_Sel1;
266: --
267: -- The primary key is invalid therefore we must error

Line 274: <> irc_iof_shd.g_old_rec.object_version_number) Then

270: fnd_message.raise_error;
271: End If;
272: Close C_Sel1;
273: If (p_object_version_number
274: <> irc_iof_shd.g_old_rec.object_version_number) Then
275: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
276: fnd_message.raise_error;
277: End If;
278: --

Line 434: irc_iof_shd.lck

430: hr_utility.set_location(' Entering:'||l_proc, 10);
431: --
432: -- We must lock the row which we need to update.
433: --
434: irc_iof_shd.lck
435: (p_offer_id
436: ,p_object_version_number
437: );
438: --

Line 449: end irc_iof_shd;

445: hr_utility.set_location(' Leaving:'||l_proc, 20);
446: --
447: End blob_dml;
448: --
449: end irc_iof_shd;