DBA Data[Home] [Help]

APPS.PQH_RMR_SHD dependencies on PQH_RMR_SHD

Line 1: Package Body pqh_rmr_shd as

1: Package Body pqh_rmr_shd as
2: /* $Header: pqrmrrhi.pkb 120.0 2005/05/29 02:34 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 79: pqh_rmr_shd.g_old_rec.rate_matrix_rate_id and

75: --
76: l_fct_ret := false;
77: Else
78: If (p_rate_matrix_rate_id =
79: pqh_rmr_shd.g_old_rec.rate_matrix_rate_id and
80: p_object_version_number =
81: pqh_rmr_shd.g_old_rec.object_version_number
82: ) Then
83: --

Line 81: pqh_rmr_shd.g_old_rec.object_version_number

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

Line 93: Fetch C_Sel1 Into pqh_rmr_shd.g_old_rec;

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

Line 104: <> pqh_rmr_shd.g_old_rec.object_version_number) Then

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

Line 303: Fetch C_Sel1 Into pqh_rmr_shd.g_old_rec;

299: --
300: -- We must select and lock the current row.
301: --
302: Open C_Sel1;
303: Fetch C_Sel1 Into pqh_rmr_shd.g_old_rec;
304: If C_Sel1%notfound then
305: Close C_Sel1;
306: --
307: -- The primary key is invalid therefore we must error

Line 314: <> pqh_rmr_shd.g_old_rec.object_version_number) Then

310: fnd_message.raise_error;
311: End If;
312: Close C_Sel1;
313: If (p_object_version_number
314: <> pqh_rmr_shd.g_old_rec.object_version_number) Then
315: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
316: fnd_message.raise_error;
317: End If;
318: --

Line 409: end pqh_rmr_shd;

405: Return(l_rec);
406: --
407: End convert_args;
408: --
409: end pqh_rmr_shd;