DBA Data[Home] [Help]

APPS.IRC_IID_SHD dependencies on IRC_IID_SHD

Line 1: Package Body irc_iid_shd as

1: Package Body irc_iid_shd as
2: /* $Header: iriidrhi.pkb 120.3.12010000.2 2008/11/06 13:49:47 mkjayara ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 105: = irc_iid_shd.g_old_rec.interview_details_id and

101: --
102: l_fct_ret := false;
103: Else
104: If (p_interview_details_id
105: = irc_iid_shd.g_old_rec.interview_details_id and
106: p_object_version_number
107: = irc_iid_shd.g_old_rec.object_version_number
108: ) Then
109: --

Line 107: = irc_iid_shd.g_old_rec.object_version_number

103: Else
104: If (p_interview_details_id
105: = irc_iid_shd.g_old_rec.interview_details_id and
106: p_object_version_number
107: = irc_iid_shd.g_old_rec.object_version_number
108: ) Then
109: --
110: -- The g_old_rec is current therefore we must
111: -- set the returning function to true

Line 119: Fetch C_Sel1 Into irc_iid_shd.g_old_rec;

115: --
116: -- Select the current row into g_old_rec
117: --
118: Open C_Sel1;
119: Fetch C_Sel1 Into irc_iid_shd.g_old_rec;
120: If C_Sel1%notfound Then
121: Close C_Sel1;
122: --
123: -- The primary key is invalid therefore we must error

Line 130: <> irc_iid_shd.g_old_rec.object_version_number) Then

126: fnd_message.raise_error;
127: End If;
128: Close C_Sel1;
129: If (p_object_version_number
130: <> irc_iid_shd.g_old_rec.object_version_number) Then
131: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
132: fnd_message.raise_error;
133: End If;
134: l_fct_ret := true;

Line 161: irc_iid_shd.get_object_version_number

157: -- Because we are updating a row we must get the next object
158: -- version number.
159: --
160: l_object_version_number :=
161: irc_iid_shd.get_object_version_number
162: (p_interview_details_id => p_interview_details_id
163: );
164: --
165: hr_utility.set_location(l_proc, 10);

Line 278: Fetch C_Sel1 Into irc_iid_shd.g_old_rec;

274: --
275: -- We must select and lock the current row.
276: --
277: Open C_Sel1;
278: Fetch C_Sel1 Into irc_iid_shd.g_old_rec;
279: If C_Sel1%notfound then
280: Close C_Sel1;
281: --
282: -- The primary key is invalid therefore we must error

Line 289: <> irc_iid_shd.g_old_rec.object_version_number) Then

285: fnd_message.raise_error;
286: End If;
287: Close C_Sel1;
288: If (p_object_version_number
289: <> irc_iid_shd.g_old_rec.object_version_number) Then
290: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
291: fnd_message.raise_error;
292: End If;
293: --

Line 312: p_validation_end_date := irc_iid_shd.g_old_rec.end_date;

308: -- Set the validation start and end date OUT arguments
309: --
310: if (p_datetrack_mode = hr_api.g_update) then
311: p_validation_start_date := p_effective_date;
312: p_validation_end_date := irc_iid_shd.g_old_rec.end_date;
313: elsif (p_datetrack_mode = hr_api.g_delete) then
314: p_validation_start_date := p_effective_date;
315: p_validation_end_date := p_effective_date;
316: end if;

Line 442: end irc_iid_shd;

438: Return(l_ovn);
439: --
440: End get_object_version_number;
441: --
442: end irc_iid_shd;