DBA Data[Home] [Help]

APPS.HXC_MAP_SHD dependencies on HXC_MAP_SHD

Line 1: Package Body hxc_map_shd as

1: Package Body hxc_map_shd as
2: /* $Header: hxcmaprhi.pkb 120.2 2005/09/23 08:17:59 nissharm noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 82: = hxc_map_shd.g_old_rec.mapping_id and

78: --
79: l_fct_ret := false;
80: Else
81: If (p_mapping_id
82: = hxc_map_shd.g_old_rec.mapping_id and
83: p_object_version_number
84: = hxc_map_shd.g_old_rec.object_version_number
85: ) Then
86: --

Line 84: = hxc_map_shd.g_old_rec.object_version_number

80: Else
81: If (p_mapping_id
82: = hxc_map_shd.g_old_rec.mapping_id and
83: p_object_version_number
84: = hxc_map_shd.g_old_rec.object_version_number
85: ) Then
86: --
87: -- The g_old_rec is current therefore we must
88: -- set the returning function to true

Line 96: Fetch C_Sel1 Into hxc_map_shd.g_old_rec;

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

Line 107: <> hxc_map_shd.g_old_rec.object_version_number) Then

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

Line 154: Fetch C_Sel1 Into hxc_map_shd.g_old_rec;

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

Line 165: <> hxc_map_shd.g_old_rec.object_version_number) Then

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

Line 213: end hxc_map_shd;

209: Return(l_rec);
210: --
211: End convert_args;
212: --
213: end hxc_map_shd;