DBA Data[Home] [Help]

APPS.IRC_IVC_SHD dependencies on IRC_IVC_SHD

Line 1: Package Body irc_ivc_shd as

1: Package Body irc_ivc_shd as
2: /* $Header: irivcrhi.pkb 120.0 2005/07/26 15:12:26 mbocutt noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 76: = irc_ivc_shd.g_old_rec.vacancy_consideration_id and

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

Line 78: = irc_ivc_shd.g_old_rec.object_version_number

74: Else
75: If (p_vacancy_consideration_id
76: = irc_ivc_shd.g_old_rec.vacancy_consideration_id and
77: p_object_version_number
78: = irc_ivc_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_ivc_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_ivc_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_ivc_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_ivc_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 152: Fetch C_Sel1 Into irc_ivc_shd.g_old_rec;

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

Line 163: <> irc_ivc_shd.g_old_rec.object_version_number) Then

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

Line 215: end irc_ivc_shd;

211: Return(l_rec);
212: --
213: End convert_args;
214: --
215: end irc_ivc_shd;