DBA Data[Home] [Help]

APPS.PER_PPB_SHD dependencies on PER_PPB_SHD

Line 1: Package Body per_ppb_shd as

1: Package Body per_ppb_shd as
2: /* $Header: peppbrhi.pkb 120.0 2005/05/31 14:56:26 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 160: = per_ppb_shd.g_old_rec.pay_basis_id and

156: --
157: l_fct_ret := false;
158: Else
159: If (p_pay_basis_id
160: = per_ppb_shd.g_old_rec.pay_basis_id and
161: p_object_version_number
162: = per_ppb_shd.g_old_rec.object_version_number
163: ) Then
164: --

Line 162: = per_ppb_shd.g_old_rec.object_version_number

158: Else
159: If (p_pay_basis_id
160: = per_ppb_shd.g_old_rec.pay_basis_id and
161: p_object_version_number
162: = per_ppb_shd.g_old_rec.object_version_number
163: ) Then
164: --
165: -- The g_old_rec is current therefore we must
166: -- set the returning function to true

Line 174: Fetch C_Sel1 Into per_ppb_shd.g_old_rec;

170: --
171: -- Select the current row into g_old_rec
172: --
173: Open C_Sel1;
174: Fetch C_Sel1 Into per_ppb_shd.g_old_rec;
175: If C_Sel1%notfound Then
176: Close C_Sel1;
177: --
178: -- The primary key is invalid therefore we must error

Line 185: <> per_ppb_shd.g_old_rec.object_version_number) Then

181: fnd_message.raise_error;
182: End If;
183: Close C_Sel1;
184: If (p_object_version_number
185: <> per_ppb_shd.g_old_rec.object_version_number) Then
186: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
187: fnd_message.raise_error;
188: End If;
189: l_fct_ret := true;

Line 283: Fetch C_Sel1 Into per_ppb_shd.g_old_rec;

279: ,p_argument_value => p_object_version_number
280: );
281: --
282: Open C_Sel1;
283: Fetch C_Sel1 Into per_ppb_shd.g_old_rec;
284: If C_Sel1%notfound then
285: Close C_Sel1;
286: --
287: -- The primary key is invalid therefore we must error

Line 294: <> per_ppb_shd.g_old_rec.object_version_number) Then

290: fnd_message.raise_error;
291: End If;
292: Close C_Sel1;
293: If (p_object_version_number
294: <> per_ppb_shd.g_old_rec.object_version_number) Then
295: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
296: fnd_message.raise_error;
297: End If;
298: --

Line 440: end per_ppb_shd;

436: Return(l_rec);
437: --
438: End convert_args;
439: --
440: end per_ppb_shd;