DBA Data[Home] [Help]

APPS.PER_VAC_SHD dependencies on PER_VAC_SHD

Line 1: Package Body per_vac_shd as

1: Package Body per_vac_shd as
2: /* $Header: pevacrhi.pkb 120.0 2005/05/31 22:51:12 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 167: = per_vac_shd.g_old_rec.vacancy_id and

163: --
164: l_fct_ret := false;
165: Else
166: if (p_vacancy_id
167: = per_vac_shd.g_old_rec.vacancy_id and
168: p_object_version_number
169: = per_vac_shd.g_old_rec.object_version_number
170: ) then
171: --

Line 169: = per_vac_shd.g_old_rec.object_version_number

165: Else
166: if (p_vacancy_id
167: = per_vac_shd.g_old_rec.vacancy_id and
168: p_object_version_number
169: = per_vac_shd.g_old_rec.object_version_number
170: ) then
171: --
172: -- The g_old_rec is current therefore we must
173: -- set the returning function to true

Line 181: Fetch C_Sel1 Into per_vac_shd.g_old_rec;

177: --
178: -- Select the current row into g_old_rec
179: --
180: Open C_Sel1;
181: Fetch C_Sel1 Into per_vac_shd.g_old_rec;
182: if C_Sel1%notfound then
183: Close C_Sel1;
184: --
185: -- The primary key is invalid therefore we must error

Line 192: <> per_vac_shd.g_old_rec.object_version_number) then

188: fnd_message.raise_error;
189: end if;
190: Close C_Sel1;
191: if (p_object_version_number
192: <> per_vac_shd.g_old_rec.object_version_number) then
193: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
194: fnd_message.raise_error;
195: end if;
196: l_fct_ret := true;

Line 287: Fetch C_Sel1 Into per_vac_shd.g_old_rec;

283: ,p_argument_value => p_object_version_number
284: );
285: --
286: Open C_Sel1;
287: Fetch C_Sel1 Into per_vac_shd.g_old_rec;
288: if C_Sel1%notfound then
289: Close C_Sel1;
290: --
291: -- The primary key is invalid therefore we must error

Line 298: <> per_vac_shd.g_old_rec.object_version_number) then

294: fnd_message.raise_error;
295: end if;
296: Close C_Sel1;
297: if (p_object_version_number
298: <> per_vac_shd.g_old_rec.object_version_number) then
299: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
300: fnd_message.raise_error;
301: end if;
302: --

Line 438: end per_vac_shd;

434: Return(l_rec);
435: --
436: End convert_args;
437: --
438: end per_vac_shd;