DBA Data[Home] [Help]

APPS.PQP_GDS_SHD dependencies on PQP_GDS_SHD

Line 1: Package Body pqp_gds_shd as

1: Package Body pqp_gds_shd as
2: /* $Header: pqgdsrhi.pkb 120.0 2005/10/28 07:32 rvishwan noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 87: = pqp_gds_shd.g_old_rec.gap_duration_summary_id and

83: --
84: l_fct_ret := false;
85: Else
86: If (p_gap_duration_summary_id
87: = pqp_gds_shd.g_old_rec.gap_duration_summary_id and
88: p_object_version_number
89: = pqp_gds_shd.g_old_rec.object_version_number
90: ) Then
91: --

Line 89: = pqp_gds_shd.g_old_rec.object_version_number

85: Else
86: If (p_gap_duration_summary_id
87: = pqp_gds_shd.g_old_rec.gap_duration_summary_id and
88: p_object_version_number
89: = pqp_gds_shd.g_old_rec.object_version_number
90: ) Then
91: --
92: -- The g_old_rec is current therefore we must
93: -- set the returning function to true

Line 101: Fetch C_Sel1 Into pqp_gds_shd.g_old_rec;

97: --
98: -- Select the current row into g_old_rec
99: --
100: Open C_Sel1;
101: Fetch C_Sel1 Into pqp_gds_shd.g_old_rec;
102: If C_Sel1%notfound Then
103: Close C_Sel1;
104: --
105: -- The primary key is invalid therefore we must error

Line 112: <> pqp_gds_shd.g_old_rec.object_version_number) Then

108: fnd_message.raise_error;
109: End If;
110: Close C_Sel1;
111: If (p_object_version_number
112: <> pqp_gds_shd.g_old_rec.object_version_number) Then
113: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
114: fnd_message.raise_error;
115: End If;
116: l_fct_ret := true;

Line 167: Fetch C_Sel1 Into pqp_gds_shd.g_old_rec;

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

Line 178: <> pqp_gds_shd.g_old_rec.object_version_number) Then

174: fnd_message.raise_error;
175: End If;
176: Close C_Sel1;
177: If (p_object_version_number
178: <> pqp_gds_shd.g_old_rec.object_version_number) Then
179: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
180: fnd_message.raise_error;
181: End If;
182: --

Line 238: end pqp_gds_shd;

234: Return(l_rec);
235: --
236: End convert_args;
237: --
238: end pqp_gds_shd;