DBA Data[Home] [Help]

APPS.GHR_CMP_SHD dependencies on GHR_CMP_SHD

Line 1: Package Body ghr_cmp_shd as

1: Package Body ghr_cmp_shd as
2: /* $Header: ghcmprhi.pkb 120.0 2005/05/29 02:54:02 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 225: = ghr_cmp_shd.g_old_rec.complaint_id and

221: --
222: l_fct_ret := false;
223: Else
224: If (p_complaint_id
225: = ghr_cmp_shd.g_old_rec.complaint_id and
226: p_object_version_number
227: = ghr_cmp_shd.g_old_rec.object_version_number
228: ) Then
229: --

Line 227: = ghr_cmp_shd.g_old_rec.object_version_number

223: Else
224: If (p_complaint_id
225: = ghr_cmp_shd.g_old_rec.complaint_id and
226: p_object_version_number
227: = ghr_cmp_shd.g_old_rec.object_version_number
228: ) Then
229: --
230: -- The g_old_rec is current therefore we must
231: -- set the returning function to true

Line 239: Fetch C_Sel1 Into ghr_cmp_shd.g_old_rec;

235: --
236: -- Select the current row into g_old_rec
237: --
238: Open C_Sel1;
239: Fetch C_Sel1 Into ghr_cmp_shd.g_old_rec;
240: If C_Sel1%notfound Then
241: Close C_Sel1;
242: --
243: -- The primary key is invalid therefore we must error

Line 250: <> ghr_cmp_shd.g_old_rec.object_version_number) Then

246: fnd_message.raise_error;
247: End If;
248: Close C_Sel1;
249: If (p_object_version_number
250: <> ghr_cmp_shd.g_old_rec.object_version_number) Then
251: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
252: fnd_message.raise_error;
253: End If;
254: l_fct_ret := true;

Line 454: Fetch C_Sel1 Into ghr_cmp_shd.g_old_rec;

450: ,p_argument_value => p_object_version_number
451: );
452: --
453: Open C_Sel1;
454: Fetch C_Sel1 Into ghr_cmp_shd.g_old_rec;
455: If C_Sel1%notfound then
456: Close C_Sel1;
457: --
458: -- The primary key is invalid therefore we must error

Line 465: <> ghr_cmp_shd.g_old_rec.object_version_number) Then

461: fnd_message.raise_error;
462: End If;
463: Close C_Sel1;
464: If (p_object_version_number
465: <> ghr_cmp_shd.g_old_rec.object_version_number) Then
466: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
467: fnd_message.raise_error;
468: End If;
469: --

Line 824: end ghr_cmp_shd;

820: Return(l_rec);
821: --
822: End convert_args;
823: --
824: end ghr_cmp_shd;