DBA Data[Home] [Help]

APPS.HR_FMP_SHD dependencies on HR_FMP_SHD

Line 1: Package Body hr_fmp_shd as

1: Package Body hr_fmp_shd as
2: /* $Header: hrfmprhi.pkb 115.5 2003/10/30 07:11:27 bsubrama noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 113: = hr_fmp_shd.g_old_rec.form_property_id and

109: --
110: l_fct_ret := false;
111: Else
112: If (p_form_property_id
113: = hr_fmp_shd.g_old_rec.form_property_id and
114: p_object_version_number
115: = hr_fmp_shd.g_old_rec.object_version_number
116: ) Then
117: --

Line 115: = hr_fmp_shd.g_old_rec.object_version_number

111: Else
112: If (p_form_property_id
113: = hr_fmp_shd.g_old_rec.form_property_id and
114: p_object_version_number
115: = hr_fmp_shd.g_old_rec.object_version_number
116: ) Then
117: --
118: -- The g_old_rec is current therefore we must
119: -- set the returning function to true

Line 127: Fetch C_Sel1 Into hr_fmp_shd.g_old_rec;

123: --
124: -- Select the current row into g_old_rec
125: --
126: Open C_Sel1;
127: Fetch C_Sel1 Into hr_fmp_shd.g_old_rec;
128: If C_Sel1%notfound Then
129: Close C_Sel1;
130:
131: --

Line 221: Fetch C_Sel1 Into hr_fmp_shd.g_old_rec;

217: ,p_argument => 'object_version_number'
218: ,p_argument_value => p_object_version_number
219: );
220: Open C_Sel1;
221: Fetch C_Sel1 Into hr_fmp_shd.g_old_rec;
222: If C_Sel1%notfound then
223: Close C_Sel1;
224: --
225: -- The primary key is invalid therefore we must error

Line 346: end hr_fmp_shd;

342: Return(l_rec);
343: --
344: End convert_args;
345: --
346: end hr_fmp_shd;