DBA Data[Home] [Help]

APPS.PQH_CRF_SHD dependencies on PQH_CRF_SHD

Line 1: Package Body pqh_crf_shd as

1: Package Body pqh_crf_shd as
2: /* $Header: pqcrfrhi.pkb 120.0 2005/10/06 14:52 srajakum noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 90: = pqh_crf_shd.g_old_rec.criteria_rate_factor_id and

86: --
87: l_fct_ret := false;
88: Else
89: If (p_criteria_rate_factor_id
90: = pqh_crf_shd.g_old_rec.criteria_rate_factor_id and
91: p_object_version_number
92: = pqh_crf_shd.g_old_rec.object_version_number
93: ) Then
94: --

Line 92: = pqh_crf_shd.g_old_rec.object_version_number

88: Else
89: If (p_criteria_rate_factor_id
90: = pqh_crf_shd.g_old_rec.criteria_rate_factor_id and
91: p_object_version_number
92: = pqh_crf_shd.g_old_rec.object_version_number
93: ) Then
94: --
95: -- The g_old_rec is current therefore we must
96: -- set the returning function to true

Line 104: Fetch C_Sel1 Into pqh_crf_shd.g_old_rec;

100: --
101: -- Select the current row into g_old_rec
102: --
103: Open C_Sel1;
104: Fetch C_Sel1 Into pqh_crf_shd.g_old_rec;
105: If C_Sel1%notfound Then
106: Close C_Sel1;
107: --
108: -- The primary key is invalid therefore we must error

Line 115: <> pqh_crf_shd.g_old_rec.object_version_number) Then

111: fnd_message.raise_error;
112: End If;
113: Close C_Sel1;
114: If (p_object_version_number
115: <> pqh_crf_shd.g_old_rec.object_version_number) Then
116: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
117: fnd_message.raise_error;
118: End If;
119: l_fct_ret := true;

Line 167: Fetch C_Sel1 Into pqh_crf_shd.g_old_rec;

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

Line 178: <> pqh_crf_shd.g_old_rec.object_version_number) Then

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

Line 232: end pqh_crf_shd;

228: Return(l_rec);
229: --
230: End convert_args;
231: --
232: end pqh_crf_shd;