DBA Data[Home] [Help]

APPS.HXC_APC_SHD dependencies on HXC_APC_SHD

Line 1: Package Body hxc_apc_shd as

1: Package Body hxc_apc_shd as
2: /* $Header: hxcapcrhi.pkb 120.2 2005/09/23 08:04:24 sechandr noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 103: = hxc_apc_shd.g_old_rec.approval_period_comp_id and

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

Line 105: = hxc_apc_shd.g_old_rec.object_version_number

101: Else
102: If (p_approval_period_comp_id
103: = hxc_apc_shd.g_old_rec.approval_period_comp_id and
104: p_object_version_number
105: = hxc_apc_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_apc_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_apc_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_apc_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_apc_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 176: Fetch C_Sel1 Into hxc_apc_shd.g_old_rec;

172: ,p_argument_value => p_approval_period_comp_id
173: );
174: --
175: Open C_Sel1;
176: Fetch C_Sel1 Into hxc_apc_shd.g_old_rec;
177: If C_Sel1%notfound then
178: Close C_Sel1;
179: --
180: -- The primary key is invalid therefore we must error

Line 187: <> hxc_apc_shd.g_old_rec.object_version_number) Then

183: fnd_message.raise_error;
184: End If;
185: Close C_Sel1;
186: If (p_object_version_number
187: <> hxc_apc_shd.g_old_rec.object_version_number) Then
188: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
189: fnd_message.raise_error;
190: End If;
191: --

Line 239: end hxc_apc_shd;

235: Return(l_rec);
236: --
237: End convert_args;
238: --
239: end hxc_apc_shd;
240: