DBA Data[Home] [Help]

APPS.PQH_CGN_SHD dependencies on PQH_CGN_SHD

Line 1: Package Body pqh_cgn_shd as

1: Package Body pqh_cgn_shd as
2: /* $Header: pqcgnrhi.pkb 115.7 2002/11/27 04:43:27 rpasapul noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 82: = pqh_cgn_shd.g_old_rec.case_group_id and

78: --
79: l_fct_ret := false;
80: Else
81: If (p_case_group_id
82: = pqh_cgn_shd.g_old_rec.case_group_id and
83: p_object_version_number
84: = pqh_cgn_shd.g_old_rec.object_version_number
85: ) Then
86: --

Line 84: = pqh_cgn_shd.g_old_rec.object_version_number

80: Else
81: If (p_case_group_id
82: = pqh_cgn_shd.g_old_rec.case_group_id and
83: p_object_version_number
84: = pqh_cgn_shd.g_old_rec.object_version_number
85: ) Then
86: --
87: -- The g_old_rec is current therefore we must
88: -- set the returning function to true

Line 96: Fetch C_Sel1 Into pqh_cgn_shd.g_old_rec;

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

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

103: fnd_message.raise_error;
104: End If;
105: Close C_Sel1;
106: If (p_object_version_number
107: <> pqh_cgn_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 168: Fetch C_Sel1 Into pqh_cgn_shd.g_old_rec;

164: ,p_argument_value => p_object_version_number
165: );
166: --
167: Open C_Sel1;
168: Fetch C_Sel1 Into pqh_cgn_shd.g_old_rec;
169: If C_Sel1%notfound then
170: Close C_Sel1;
171: --
172: -- The primary key is invalid therefore we must error

Line 179: <> pqh_cgn_shd.g_old_rec.object_version_number) Then

175: fnd_message.raise_error;
176: End If;
177: Close C_Sel1;
178: If (p_object_version_number
179: <> pqh_cgn_shd.g_old_rec.object_version_number) Then
180: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
181: fnd_message.raise_error;
182: End If;
183: --

Line 251: end pqh_cgn_shd;

247: Return(l_rec);
248: --
249: End convert_args;
250: --
251: end pqh_cgn_shd;