DBA Data[Home] [Help]

APPS.HXC_ULQ_SHD dependencies on HXC_ULQ_SHD

Line 1: Package Body hxc_ulq_shd as

1: Package Body hxc_ulq_shd as
2: /* $Header: hxculqrhi.pkb 120.2 2005/09/23 06:26:40 rchennur noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 107: = hxc_ulq_shd.g_old_rec.layout_comp_qualifier_id and

103: --
104: l_fct_ret := false;
105: Else
106: If (p_layout_comp_qualifier_id
107: = hxc_ulq_shd.g_old_rec.layout_comp_qualifier_id and
108: p_object_version_number
109: = hxc_ulq_shd.g_old_rec.object_version_number
110: ) Then
111: --

Line 109: = hxc_ulq_shd.g_old_rec.object_version_number

105: Else
106: If (p_layout_comp_qualifier_id
107: = hxc_ulq_shd.g_old_rec.layout_comp_qualifier_id and
108: p_object_version_number
109: = hxc_ulq_shd.g_old_rec.object_version_number
110: ) Then
111: --
112: -- The g_old_rec is current therefore we must
113: -- set the returning function to true

Line 121: Fetch C_Sel1 Into hxc_ulq_shd.g_old_rec;

117: --
118: -- Select the current row into g_old_rec
119: --
120: Open C_Sel1;
121: Fetch C_Sel1 Into hxc_ulq_shd.g_old_rec;
122: If C_Sel1%notfound Then
123: Close C_Sel1;
124: --
125: -- The primary key is invalid therefore we must error

Line 132: <> hxc_ulq_shd.g_old_rec.object_version_number) Then

128: fnd_message.raise_error;
129: End If;
130: Close C_Sel1;
131: If (p_object_version_number
132: <> hxc_ulq_shd.g_old_rec.object_version_number) Then
133: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
134: fnd_message.raise_error;
135: End If;
136: l_fct_ret := true;

Line 210: Fetch C_Sel1 Into hxc_ulq_shd.g_old_rec;

206: ,p_argument_value => p_layout_comp_qualifier_id
207: );
208: --
209: Open C_Sel1;
210: Fetch C_Sel1 Into hxc_ulq_shd.g_old_rec;
211: If C_Sel1%notfound then
212: Close C_Sel1;
213: --
214: -- The primary key is invalid therefore we must error

Line 221: <> hxc_ulq_shd.g_old_rec.object_version_number) Then

217: fnd_message.raise_error;
218: End If;
219: Close C_Sel1;
220: If (p_object_version_number
221: <> hxc_ulq_shd.g_old_rec.object_version_number) Then
222: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
223: fnd_message.raise_error;
224: End If;
225: --

Line 333: end hxc_ulq_shd;

329: Return(l_rec);
330: --
331: End convert_args;
332: --
333: end hxc_ulq_shd;