DBA Data[Home] [Help]

APPS.IRC_CMT_SHD dependencies on IRC_CMT_SHD

Line 1: Package Body irc_cmt_shd as

1: Package Body irc_cmt_shd as
2: /* $Header: ircmtrhi.pkb 120.1 2008/03/18 14:03:16 amikukum noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 76: = irc_cmt_shd.g_old_rec.communication_topic_id and

72: --
73: l_fct_ret := false;
74: Else
75: If (p_communication_topic_id
76: = irc_cmt_shd.g_old_rec.communication_topic_id and
77: p_object_version_number
78: = irc_cmt_shd.g_old_rec.object_version_number
79: ) Then
80: --

Line 78: = irc_cmt_shd.g_old_rec.object_version_number

74: Else
75: If (p_communication_topic_id
76: = irc_cmt_shd.g_old_rec.communication_topic_id and
77: p_object_version_number
78: = irc_cmt_shd.g_old_rec.object_version_number
79: ) Then
80: --
81: -- The g_old_rec is current therefore we must
82: -- set the returning function to true

Line 90: Fetch C_Sel1 Into irc_cmt_shd.g_old_rec;

86: --
87: -- Select the current row into g_old_rec
88: --
89: Open C_Sel1;
90: Fetch C_Sel1 Into irc_cmt_shd.g_old_rec;
91: If C_Sel1%notfound Then
92: Close C_Sel1;
93: --
94: -- The primary key is invalid therefore we must error

Line 101: <> irc_cmt_shd.g_old_rec.object_version_number) Then

97: fnd_message.raise_error;
98: End If;
99: Close C_Sel1;
100: If (p_object_version_number
101: <> irc_cmt_shd.g_old_rec.object_version_number) Then
102: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
103: fnd_message.raise_error;
104: End If;
105: l_fct_ret := true;

Line 151: Fetch C_Sel1 Into irc_cmt_shd.g_old_rec;

147: ,p_argument_value => p_object_version_number
148: );
149: --
150: Open C_Sel1;
151: Fetch C_Sel1 Into irc_cmt_shd.g_old_rec;
152: If C_Sel1%notfound then
153: Close C_Sel1;
154: --
155: -- The primary key is invalid therefore we must error

Line 162: <> irc_cmt_shd.g_old_rec.object_version_number) Then

158: fnd_message.raise_error;
159: End If;
160: Close C_Sel1;
161: If (p_object_version_number
162: <> irc_cmt_shd.g_old_rec.object_version_number) Then
163: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
164: fnd_message.raise_error;
165: End If;
166: --

Line 212: end irc_cmt_shd;

208: Return(l_rec);
209: --
210: End convert_args;
211: --
212: end irc_cmt_shd;