DBA Data[Home] [Help]

APPS.HXC_HAC_SHD dependencies on HXC_HAC_SHD

Line 1: Package Body hxc_hac_shd as

1: Package Body hxc_hac_shd as
2: /* $Header: hxchacrhi.pkb 120.4 2006/06/13 08:42:23 gsirigin noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 103: = hxc_hac_shd.g_old_rec.approval_comp_id and

99: --
100: l_fct_ret := false;
101: Else
102: If (p_approval_comp_id
103: = hxc_hac_shd.g_old_rec.approval_comp_id and
104: p_object_version_number
105: = hxc_hac_shd.g_old_rec.object_version_number
106: ) Then
107: --

Line 105: = hxc_hac_shd.g_old_rec.object_version_number

101: Else
102: If (p_approval_comp_id
103: = hxc_hac_shd.g_old_rec.approval_comp_id and
104: p_object_version_number
105: = hxc_hac_shd.g_old_rec.object_version_number
106: ) Then
107: --
108: -- The g_old_rec is current therefore we must
109: -- set the returning function to true

Line 117: Fetch C_Sel1 Into hxc_hac_shd.g_old_rec;

113: --
114: -- Select the current row into g_old_rec
115: --
116: Open C_Sel1;
117: Fetch C_Sel1 Into hxc_hac_shd.g_old_rec;
118: If C_Sel1%notfound Then
119: Close C_Sel1;
120: --
121: -- The primary key is invalid therefore we must error

Line 128: <> hxc_hac_shd.g_old_rec.object_version_number) Then

124: fnd_message.raise_error;
125: End If;
126: Close C_Sel1;
127: If (p_object_version_number
128: <> hxc_hac_shd.g_old_rec.object_version_number) Then
129: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
130: fnd_message.raise_error;
131: End If;
132: l_fct_ret := true;

Line 186: Fetch C_Sel1 Into hxc_hac_shd.g_old_rec;

182: ,p_argument_value => p_approval_comp_id
183: );
184: --
185: Open C_Sel1;
186: Fetch C_Sel1 Into hxc_hac_shd.g_old_rec;
187: If C_Sel1%notfound then
188: Close C_Sel1;
189: --
190: -- The primary key is invalid therefore we must error

Line 197: <> hxc_hac_shd.g_old_rec.object_version_number) Then

193: fnd_message.raise_error;
194: End If;
195: Close C_Sel1;
196: If (p_object_version_number
197: <> hxc_hac_shd.g_old_rec.object_version_number) Then
198: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
199: fnd_message.raise_error;
200: End If;
201: --

Line 269: end hxc_hac_shd;

265: Return(l_rec);
266: --
267: End convert_args;
268: --
269: end hxc_hac_shd;