DBA Data[Home] [Help]

APPS.HXC_ULC_SHD dependencies on HXC_ULC_SHD

Line 1: Package Body hxc_ulc_shd as

1: Package Body hxc_ulc_shd as
2: /* $Header: hxculcrhi.pkb 120.2 2005/09/23 06:07:43 rchennur noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 102: = hxc_ulc_shd.g_old_rec.layout_component_id and

98: --
99: l_fct_ret := false;
100: Else
101: If (p_layout_component_id
102: = hxc_ulc_shd.g_old_rec.layout_component_id and
103: p_object_version_number
104: = hxc_ulc_shd.g_old_rec.object_version_number
105: ) Then
106: --

Line 104: = hxc_ulc_shd.g_old_rec.object_version_number

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

Line 116: Fetch C_Sel1 Into hxc_ulc_shd.g_old_rec;

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

Line 127: <> hxc_ulc_shd.g_old_rec.object_version_number) Then

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

Line 190: Fetch C_Sel1 Into hxc_ulc_shd.g_old_rec;

186: ,p_argument_value => p_layout_component_id
187: );
188: --
189: Open C_Sel1;
190: Fetch C_Sel1 Into hxc_ulc_shd.g_old_rec;
191: If C_Sel1%notfound then
192: Close C_Sel1;
193: --
194: -- The primary key is invalid therefore we must error

Line 201: <> hxc_ulc_shd.g_old_rec.object_version_number) Then

197: fnd_message.raise_error;
198: End If;
199: Close C_Sel1;
200: If (p_object_version_number
201: <> hxc_ulc_shd.g_old_rec.object_version_number) Then
202: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
203: fnd_message.raise_error;
204: End If;
205: --

Line 283: end hxc_ulc_shd;

279: Return(l_rec);
280: --
281: End convert_args;
282: --
283: end hxc_ulc_shd;