DBA Data[Home] [Help]

APPS.FF_FGL_SHD dependencies on FF_FGL_SHD

Line 1: Package Body ff_fgl_shd as

1: Package Body ff_fgl_shd as
2: /* $Header: fffglrhi.pkb 120.0.12000000.1 2007/03/20 11:52:47 ckesanap noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 98: ff_fgl_shd.g_old_rec.global_id and

94: --
95: l_fct_ret := false;
96: Else
97: If (p_global_id =
98: ff_fgl_shd.g_old_rec.global_id and
99: p_object_version_number =
100: ff_fgl_shd.g_old_rec.object_version_number
101: ) Then
102: --

Line 100: ff_fgl_shd.g_old_rec.object_version_number

96: Else
97: If (p_global_id =
98: ff_fgl_shd.g_old_rec.global_id and
99: p_object_version_number =
100: ff_fgl_shd.g_old_rec.object_version_number
101: ) Then
102: --
103: -- The g_old_rec is current therefore we must
104: -- set the returning function to true

Line 112: Fetch C_Sel1 Into ff_fgl_shd.g_old_rec;

108: --
109: -- Select the current row
110: --
111: Open C_Sel1;
112: Fetch C_Sel1 Into ff_fgl_shd.g_old_rec;
113: If C_Sel1%notfound Then
114: Close C_Sel1;
115: --
116: -- The primary key is invalid therefore we must error

Line 123: <> ff_fgl_shd.g_old_rec.object_version_number) Then

119: fnd_message.raise_error;
120: End If;
121: Close C_Sel1;
122: If (p_object_version_number
123: <> ff_fgl_shd.g_old_rec.object_version_number) Then
124: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
125: fnd_message.raise_error;
126: End If;
127: l_fct_ret := true;

Line 230: ff_fgl_shd.g_api_dml := true; -- Set the api dml status

226: ,p_base_key_value => p_base_key_value
227: );
228: --
229: hr_utility.set_location(l_proc, 10);
230: ff_fgl_shd.g_api_dml := true; -- Set the api dml status
231: --
232: -- Update the specified datetrack row setting the effective
233: -- end date to the specified new effective end date.
234: --

Line 242: ff_fgl_shd.g_api_dml := false; -- Unset the api dml status

238: where t.global_id = p_base_key_value
239: and p_effective_date
240: between t.effective_start_date and t.effective_end_date;
241: --
242: ff_fgl_shd.g_api_dml := false; -- Unset the api dml status
243: p_object_version_number := l_object_version_number;
244: hr_utility.set_location(' Leaving:'||l_proc, 15);
245: --
246: Exception

Line 248: ff_fgl_shd.g_api_dml := false; -- Unset the api dml status

244: hr_utility.set_location(' Leaving:'||l_proc, 15);
245: --
246: Exception
247: When Others Then
248: ff_fgl_shd.g_api_dml := false; -- Unset the api dml status
249: Raise;
250: --
251: End upd_effective_end_date;
252: --

Line 325: Fetch C_Sel1 Into ff_fgl_shd.g_old_rec;

321: --
322: -- We must select and lock the current row.
323: --
324: Open C_Sel1;
325: Fetch C_Sel1 Into ff_fgl_shd.g_old_rec;
326: If C_Sel1%notfound then
327: Close C_Sel1;
328: --
329: -- The primary key is invalid therefore we must error

Line 336: <> ff_fgl_shd.g_old_rec.object_version_number) Then

332: fnd_message.raise_error;
333: End If;
334: Close C_Sel1;
335: If (p_object_version_number
336: <> ff_fgl_shd.g_old_rec.object_version_number) Then
337: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
338: fnd_message.raise_error;
339: End If;
340: --

Line 427: end ff_fgl_shd;

423: Return(l_rec);
424: --
425: End convert_args;
426: --
427: end ff_fgl_shd;