DBA Data[Home] [Help]

APPS.GHR_CPL_SHD dependencies on GHR_CPL_SHD

Line 1: Package Body ghr_cpl_shd as

1: Package Body ghr_cpl_shd as
2: /* $Header: ghcplrhi.pkb 115.1 2003/01/30 19:25:27 asubrahm noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 73: = ghr_cpl_shd.g_old_rec.compl_person_id and

69: --
70: l_fct_ret := false;
71: Else
72: If (p_compl_person_id
73: = ghr_cpl_shd.g_old_rec.compl_person_id and
74: p_object_version_number
75: = ghr_cpl_shd.g_old_rec.object_version_number
76: ) Then
77: --

Line 75: = ghr_cpl_shd.g_old_rec.object_version_number

71: Else
72: If (p_compl_person_id
73: = ghr_cpl_shd.g_old_rec.compl_person_id and
74: p_object_version_number
75: = ghr_cpl_shd.g_old_rec.object_version_number
76: ) Then
77: --
78: -- The g_old_rec is current therefore we must
79: -- set the returning function to true

Line 87: Fetch C_Sel1 Into ghr_cpl_shd.g_old_rec;

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

Line 98: <> ghr_cpl_shd.g_old_rec.object_version_number) Then

94: fnd_message.raise_error;
95: End If;
96: Close C_Sel1;
97: If (p_object_version_number
98: <> ghr_cpl_shd.g_old_rec.object_version_number) Then
99: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
100: fnd_message.raise_error;
101: End If;
102: l_fct_ret := true;

Line 150: Fetch C_Sel1 Into ghr_cpl_shd.g_old_rec;

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

Line 161: <> ghr_cpl_shd.g_old_rec.object_version_number) Then

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

Line 215: end ghr_cpl_shd;

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