DBA Data[Home] [Help]

APPS.PQH_RHA_SHD dependencies on PQH_RHA_SHD

Line 1: Package Body pqh_rha_shd as

1: Package Body pqh_rha_shd as
2: /* $Header: pqrharhi.pkb 120.1 2005/08/03 13:43:25 nsanghal noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 90: = pqh_rha_shd.g_old_rec.routing_hist_attrib_id and

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

Line 92: = pqh_rha_shd.g_old_rec.object_version_number

88: Else
89: If (p_routing_hist_attrib_id
90: = pqh_rha_shd.g_old_rec.routing_hist_attrib_id and
91: p_object_version_number
92: = pqh_rha_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_rha_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_rha_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_rha_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_rha_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 168: Fetch C_Sel1 Into pqh_rha_shd.g_old_rec;

164: ,p_argument_value => p_routing_hist_attrib_id
165: );
166: --
167: Open C_Sel1;
168: Fetch C_Sel1 Into pqh_rha_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_rha_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_rha_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 247: end pqh_rha_shd;

243: Return(l_rec);
244: --
245: End convert_args;
246: --
247: end pqh_rha_shd;