DBA Data[Home] [Help]

APPS.PQH_RAP_SHD dependencies on PQH_RAP_SHD

Line 1: Package Body pqh_rap_shd as

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

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

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

Line 75: = pqh_rap_shd.g_old_rec.rank_process_approval_id and

71: --
72: l_fct_ret := false;
73: Else
74: If (p_rank_process_approval_id
75: = pqh_rap_shd.g_old_rec.rank_process_approval_id and
76: p_object_version_number
77: = pqh_rap_shd.g_old_rec.object_version_number
78: ) Then
79: --

Line 77: = pqh_rap_shd.g_old_rec.object_version_number

73: Else
74: If (p_rank_process_approval_id
75: = pqh_rap_shd.g_old_rec.rank_process_approval_id and
76: p_object_version_number
77: = pqh_rap_shd.g_old_rec.object_version_number
78: ) Then
79: --
80: -- The g_old_rec is current therefore we must
81: -- set the returning function to true

Line 89: Fetch C_Sel1 Into pqh_rap_shd.g_old_rec;

85: --
86: -- Select the current row into g_old_rec
87: --
88: Open C_Sel1;
89: Fetch C_Sel1 Into pqh_rap_shd.g_old_rec;
90: If C_Sel1%notfound Then
91: Close C_Sel1;
92: --
93: -- The primary key is invalid therefore we must error

Line 100: <> pqh_rap_shd.g_old_rec.object_version_number) Then

96: fnd_message.raise_error;
97: End If;
98: Close C_Sel1;
99: If (p_object_version_number
100: <> pqh_rap_shd.g_old_rec.object_version_number) Then
101: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
102: fnd_message.raise_error;
103: End If;
104: l_fct_ret := true;

Line 154: Fetch C_Sel1 Into pqh_rap_shd.g_old_rec;

150: ,p_argument_value => p_object_version_number
151: );
152: --
153: Open C_Sel1;
154: Fetch C_Sel1 Into pqh_rap_shd.g_old_rec;
155: If C_Sel1%notfound then
156: Close C_Sel1;
157: --
158: -- The primary key is invalid therefore we must error

Line 165: <> pqh_rap_shd.g_old_rec.object_version_number) Then

161: fnd_message.raise_error;
162: End If;
163: Close C_Sel1;
164: If (p_object_version_number
165: <> pqh_rap_shd.g_old_rec.object_version_number) Then
166: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
167: fnd_message.raise_error;
168: End If;
169: --

Line 221: end pqh_rap_shd;

217: Return(l_rec);
218: --
219: End convert_args;
220: --
221: end pqh_rap_shd;