DBA Data[Home] [Help]

APPS.HXC_ULA_SHD dependencies on HXC_ULA_SHD

Line 1: Package Body hxc_ula_shd as

1: Package Body hxc_ula_shd as
2: /* $Header: hxcularhi.pkb 120.3 2005/09/23 05:57:47 rchennur noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 80: = hxc_ula_shd.g_old_rec.layout_id and

76: --
77: l_fct_ret := false;
78: Else
79: If (p_layout_id
80: = hxc_ula_shd.g_old_rec.layout_id and
81: p_object_version_number
82: = hxc_ula_shd.g_old_rec.object_version_number
83: ) Then
84: --

Line 82: = hxc_ula_shd.g_old_rec.object_version_number

78: Else
79: If (p_layout_id
80: = hxc_ula_shd.g_old_rec.layout_id and
81: p_object_version_number
82: = hxc_ula_shd.g_old_rec.object_version_number
83: ) Then
84: --
85: -- The g_old_rec is current therefore we must
86: -- set the returning function to true

Line 94: Fetch C_Sel1 Into hxc_ula_shd.g_old_rec;

90: --
91: -- Select the current row into g_old_rec
92: --
93: Open C_Sel1;
94: Fetch C_Sel1 Into hxc_ula_shd.g_old_rec;
95: If C_Sel1%notfound Then
96: Close C_Sel1;
97: --
98: -- The primary key is invalid therefore we must error

Line 105: <> hxc_ula_shd.g_old_rec.object_version_number) Then

101: fnd_message.raise_error;
102: End If;
103: Close C_Sel1;
104: If (p_object_version_number
105: <> hxc_ula_shd.g_old_rec.object_version_number) Then
106: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
107: fnd_message.raise_error;
108: End If;
109: l_fct_ret := true;

Line 156: Fetch C_Sel1 Into hxc_ula_shd.g_old_rec;

152: ,p_argument_value => p_layout_id
153: );
154: --
155: Open C_Sel1;
156: Fetch C_Sel1 Into hxc_ula_shd.g_old_rec;
157: If C_Sel1%notfound then
158: Close C_Sel1;
159: --
160: -- The primary key is invalid therefore we must error

Line 167: <> hxc_ula_shd.g_old_rec.object_version_number) Then

163: fnd_message.raise_error;
164: End If;
165: Close C_Sel1;
166: If (p_object_version_number
167: <> hxc_ula_shd.g_old_rec.object_version_number) Then
168: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
169: fnd_message.raise_error;
170: End If;
171: --

Line 225: end hxc_ula_shd;

221: Return(l_rec);
222: --
223: End convert_args;
224: --
225: end hxc_ula_shd;