DBA Data[Home] [Help]

APPS.GHR_CCL_SHD dependencies on GHR_CCL_SHD

Line 1: Package Body ghr_ccl_shd as

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

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

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

Line 82: = ghr_ccl_shd.g_old_rec.compl_claim_id

78: --
79: l_fct_ret := false;
80: Else
81: If (p_compl_claim_id
82: = ghr_ccl_shd.g_old_rec.compl_claim_id
83: and p_object_version_number = ghr_ccl_shd.g_old_rec.object_version_number
84: ) Then
85: --
86: -- The g_old_rec is current therefore we must

Line 83: and p_object_version_number = ghr_ccl_shd.g_old_rec.object_version_number

79: l_fct_ret := false;
80: Else
81: If (p_compl_claim_id
82: = ghr_ccl_shd.g_old_rec.compl_claim_id
83: and p_object_version_number = ghr_ccl_shd.g_old_rec.object_version_number
84: ) Then
85: --
86: -- The g_old_rec is current therefore we must
87: -- set the returning function to true

Line 95: Fetch C_Sel1 Into ghr_ccl_shd.g_old_rec;

91: --
92: -- Select the current row into g_old_rec
93: --
94: Open C_Sel1;
95: Fetch C_Sel1 Into ghr_ccl_shd.g_old_rec;
96: If C_Sel1%notfound Then
97: Close C_Sel1;
98: --
99: -- The primary key is invalid therefore we must error

Line 107: <> ghr_ccl_shd.g_old_rec.object_version_number) Then

103: End If;
104: Close C_Sel1;
105: --
106: If (p_object_version_number
107: <> ghr_ccl_shd.g_old_rec.object_version_number) Then
108: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
109: fnd_message.raise_error;
110: End If;
111: l_fct_ret := true;

Line 163: Fetch C_Sel1 Into ghr_ccl_shd.g_old_rec;

159: ,p_argument_value => p_object_version_number
160: );
161: --
162: Open C_Sel1;
163: Fetch C_Sel1 Into ghr_ccl_shd.g_old_rec;
164: If C_Sel1%notfound then
165: Close C_Sel1;
166: --
167: -- The primary key is invalid therefore we must error

Line 175: <> ghr_ccl_shd.g_old_rec.object_version_number) Then

171: End If;
172: Close C_Sel1;
173:
174: If (p_object_version_number
175: <> ghr_ccl_shd.g_old_rec.object_version_number) Then
176: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
177: fnd_message.raise_error;
178: End If;
179:

Line 239: end ghr_ccl_shd;

235: Return(l_rec);
236: --
237: End convert_args;
238: --
239: end ghr_ccl_shd;