DBA Data[Home] [Help]

APPS.PER_PGS_SHD dependencies on PER_PGS_SHD

Line 1: Package Body per_pgs_shd as

1: Package Body per_pgs_shd as
2: /* $Header: pepgsrhi.pkb 120.0 2005/05/31 14:12:49 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 106: per_pgs_shd.g_old_rec.grade_spine_id and

102: --
103: l_fct_ret := false;
104: Else
105: If (p_grade_spine_id =
106: per_pgs_shd.g_old_rec.grade_spine_id and
107: p_object_version_number =
108: per_pgs_shd.g_old_rec.object_version_number
109: ) Then
110: --

Line 108: per_pgs_shd.g_old_rec.object_version_number

104: Else
105: If (p_grade_spine_id =
106: per_pgs_shd.g_old_rec.grade_spine_id and
107: p_object_version_number =
108: per_pgs_shd.g_old_rec.object_version_number
109: ) Then
110: --
111: -- The g_old_rec is current therefore we must
112: -- set the returning function to true

Line 120: Fetch C_Sel1 Into per_pgs_shd.g_old_rec;

116: --
117: -- Select the current row
118: --
119: Open C_Sel1;
120: Fetch C_Sel1 Into per_pgs_shd.g_old_rec;
121: If C_Sel1%notfound Then
122: Close C_Sel1;
123: --
124: -- The primary key is invalid therefore we must error

Line 131: <> per_pgs_shd.g_old_rec.object_version_number) Then

127: fnd_message.raise_error;
128: End If;
129: Close C_Sel1;
130: If (p_object_version_number
131: <> per_pgs_shd.g_old_rec.object_version_number) Then
132: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
133: fnd_message.raise_error;
134: End If;
135: l_fct_ret := true;

Line 238: per_pgs_shd.g_api_dml := true; -- Set the api dml status

234: ,p_base_key_value => p_base_key_value
235: );
236: --
237: hr_utility.set_location(l_proc, 10);
238: per_pgs_shd.g_api_dml := true; -- Set the api dml status
239: --
240: -- Update the specified datetrack row setting the effective
241: -- end date to the specified new effective end date.
242: --

Line 250: per_pgs_shd.g_api_dml := false; -- Unset the api dml status

246: where t.grade_spine_id = p_base_key_value
247: and p_effective_date
248: between t.effective_start_date and t.effective_end_date;
249: --
250: per_pgs_shd.g_api_dml := false; -- Unset the api dml status
251: p_object_version_number := l_object_version_number;
252: hr_utility.set_location(' Leaving:'||l_proc, 15);
253: --
254: Exception

Line 256: per_pgs_shd.g_api_dml := false; -- Unset the api dml status

252: hr_utility.set_location(' Leaving:'||l_proc, 15);
253: --
254: Exception
255: When Others Then
256: per_pgs_shd.g_api_dml := false; -- Unset the api dml status
257: Raise;
258: --
259: End upd_effective_end_date;
260: --

Line 336: Fetch C_Sel1 Into per_pgs_shd.g_old_rec;

332: --
333: -- We must select and lock the current row.
334: --
335: Open C_Sel1;
336: Fetch C_Sel1 Into per_pgs_shd.g_old_rec;
337: If C_Sel1%notfound then
338: Close C_Sel1;
339: --
340: -- The primary key is invalid therefore we must error

Line 347: <> per_pgs_shd.g_old_rec.object_version_number) Then

343: fnd_message.raise_error;
344: End If;
345: Close C_Sel1;
346: If (p_object_version_number
347: <> per_pgs_shd.g_old_rec.object_version_number) Then
348: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
349: fnd_message.raise_error;
350: End If;
351: --

Line 448: end per_pgs_shd;

444: Return(l_rec);
445: --
446: End convert_args;
447: --
448: end per_pgs_shd;