DBA Data[Home] [Help]

APPS.IRC_CMP_SHD dependencies on IRC_CMP_SHD

Line 1: Package Body irc_cmp_shd as

1: Package Body irc_cmp_shd as
2: /* $Header: ircmprhi.pkb 120.0 2007/11/19 11:38:55 sethanga noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 97: = irc_cmp_shd.g_old_rec.communication_property_id and

93: --
94: l_fct_ret := false;
95: Else
96: If (p_communication_property_id
97: = irc_cmp_shd.g_old_rec.communication_property_id and
98: p_object_version_number
99: = irc_cmp_shd.g_old_rec.object_version_number
100: ) Then
101: --

Line 99: = irc_cmp_shd.g_old_rec.object_version_number

95: Else
96: If (p_communication_property_id
97: = irc_cmp_shd.g_old_rec.communication_property_id and
98: p_object_version_number
99: = irc_cmp_shd.g_old_rec.object_version_number
100: ) Then
101: --
102: -- The g_old_rec is current therefore we must
103: -- set the returning function to true

Line 111: Fetch C_Sel1 Into irc_cmp_shd.g_old_rec;

107: --
108: -- Select the current row into g_old_rec
109: --
110: Open C_Sel1;
111: Fetch C_Sel1 Into irc_cmp_shd.g_old_rec;
112: If C_Sel1%notfound Then
113: Close C_Sel1;
114: --
115: -- The primary key is invalid therefore we must error

Line 122: <> irc_cmp_shd.g_old_rec.object_version_number) Then

118: fnd_message.raise_error;
119: End If;
120: Close C_Sel1;
121: If (p_object_version_number
122: <> irc_cmp_shd.g_old_rec.object_version_number) Then
123: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
124: fnd_message.raise_error;
125: End If;
126: l_fct_ret := true;

Line 198: Fetch C_Sel1 Into irc_cmp_shd.g_old_rec;

194: ,p_argument_value => p_object_version_number
195: );
196: --
197: Open C_Sel1;
198: Fetch C_Sel1 Into irc_cmp_shd.g_old_rec;
199: If C_Sel1%notfound then
200: Close C_Sel1;
201: --
202: -- The primary key is invalid therefore we must error

Line 209: <> irc_cmp_shd.g_old_rec.object_version_number) Then

205: fnd_message.raise_error;
206: End If;
207: Close C_Sel1;
208: If (p_object_version_number
209: <> irc_cmp_shd.g_old_rec.object_version_number) Then
210: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
211: fnd_message.raise_error;
212: End If;
213: --

Line 311: end irc_cmp_shd;

307: Return(l_rec);
308: --
309: End convert_args;
310: --
311: end irc_cmp_shd;