DBA Data[Home] [Help]

APPS.PQH_RNK_SHD dependencies on PQH_RNK_SHD

Line 1: Package Body pqh_rnk_shd as

1: Package Body pqh_rnk_shd as
2: /* $Header: pqrnkrhi.pkb 120.1 2005/06/23 13:27 nsanghal noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 80: = pqh_rnk_shd.g_old_rec.rank_process_id and

76: --
77: l_fct_ret := false;
78: Else
79: If (p_rank_process_id
80: = pqh_rnk_shd.g_old_rec.rank_process_id and
81: p_object_version_number
82: = pqh_rnk_shd.g_old_rec.object_version_number
83: ) Then
84: --

Line 82: = pqh_rnk_shd.g_old_rec.object_version_number

78: Else
79: If (p_rank_process_id
80: = pqh_rnk_shd.g_old_rec.rank_process_id and
81: p_object_version_number
82: = pqh_rnk_shd.g_old_rec.object_version_number
83: ) Then
84: --
85: -- The g_old_rec is current therefore we must
86: -- set the returning function to true

Line 94: Fetch C_Sel1 Into pqh_rnk_shd.g_old_rec;

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

Line 105: <> pqh_rnk_shd.g_old_rec.object_version_number) Then

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

Line 164: Fetch C_Sel1 Into pqh_rnk_shd.g_old_rec;

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

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

171: fnd_message.raise_error;
172: End If;
173: Close C_Sel1;
174: If (p_object_version_number
175: <> pqh_rnk_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 243: end pqh_rnk_shd;

239: Return(l_rec);
240: --
241: End convert_args;
242: --
243: end pqh_rnk_shd;