DBA Data[Home] [Help]

APPS.PQP_VAL_SHD dependencies on PQP_VAL_SHD

Line 1: Package Body pqp_val_shd as

1: Package Body pqp_val_shd as
2: /* $Header: pqvalrhi.pkb 120.0.12010000.3 2008/08/08 07:22:41 ubhat ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 132: pqp_val_shd.g_old_rec.vehicle_allocation_id and

128: --
129: l_fct_ret := false;
130: Else
131: If (p_vehicle_allocation_id =
132: pqp_val_shd.g_old_rec.vehicle_allocation_id and
133: p_object_version_number =
134: pqp_val_shd.g_old_rec.object_version_number
135: ) Then
136: --

Line 134: pqp_val_shd.g_old_rec.object_version_number

130: Else
131: If (p_vehicle_allocation_id =
132: pqp_val_shd.g_old_rec.vehicle_allocation_id and
133: p_object_version_number =
134: pqp_val_shd.g_old_rec.object_version_number
135: ) Then
136: --
137: -- The g_old_rec is current therefore we must
138: -- set the returning function to true

Line 146: Fetch C_Sel1 Into pqp_val_shd.g_old_rec;

142: --
143: -- Select the current row
144: --
145: Open C_Sel1;
146: Fetch C_Sel1 Into pqp_val_shd.g_old_rec;
147: If C_Sel1%notfound Then
148: Close C_Sel1;
149: --
150: -- The primary key is invalid therefore we must error

Line 157: <> pqp_val_shd.g_old_rec.object_version_number) Then

153: fnd_message.raise_error;
154: End If;
155: Close C_Sel1;
156: If (p_object_version_number
157: <> pqp_val_shd.g_old_rec.object_version_number) Then
158: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
159: fnd_message.raise_error;
160: End If;
161: l_fct_ret := true;

Line 171: return pqp_val_shd.g_message ;

167: --
168: -----------------------------------------------------------------------------
169: Function pqp_get_global_msg_value return varchar2 is
170: begin
171: return pqp_val_shd.g_message ;
172: end ;
173:
174:
175: ------------------------------------------------------------------------------

Line 416: Fetch C_Sel1 Into pqp_val_shd.g_old_rec;

412: --
413: -- We must select and lock the current row.
414: --
415: Open C_Sel1;
416: Fetch C_Sel1 Into pqp_val_shd.g_old_rec;
417: If C_Sel1%notfound then
418: Close C_Sel1;
419: --
420: -- The primary key is invalid therefore we must error

Line 427: <> pqp_val_shd.g_old_rec.object_version_number) Then

423: fnd_message.raise_error;
424: End If;
425: Close C_Sel1;
426: If (p_object_version_number
427: <> pqp_val_shd.g_old_rec.object_version_number) Then
428: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
429: fnd_message.raise_error;
430: End If;
431: --

Line 628: end pqp_val_shd;

624: Return(l_rec);
625: --
626: End convert_args;
627: --
628: end pqp_val_shd;