DBA Data[Home] [Help]

APPS.HXC_TCC_SHD dependencies on HXC_TCC_SHD

Line 1: Package Body hxc_tcc_shd as

1: Package Body hxc_tcc_shd as
2: /* $Header: hxctccrhi.pkb 120.3 2006/07/07 06:27:47 gsirigin noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 89: = hxc_tcc_shd.g_old_rec.time_category_comp_id and

85:
86: l_fct_ret := false;
87: Else
88: If (p_time_category_comp_id
89: = hxc_tcc_shd.g_old_rec.time_category_comp_id and
90: p_object_version_number
91: = hxc_tcc_shd.g_old_rec.object_version_number
92: ) Then
93: --

Line 91: = hxc_tcc_shd.g_old_rec.object_version_number

87: Else
88: If (p_time_category_comp_id
89: = hxc_tcc_shd.g_old_rec.time_category_comp_id and
90: p_object_version_number
91: = hxc_tcc_shd.g_old_rec.object_version_number
92: ) Then
93: --
94: -- The g_old_rec is current therefore we must
95: -- set the returning function to true

Line 103: Fetch C_Sel1 Into hxc_tcc_shd.g_old_rec;

99: --
100: -- Select the current row into g_old_rec
101: --
102: Open C_Sel1;
103: Fetch C_Sel1 Into hxc_tcc_shd.g_old_rec;
104: If C_Sel1%notfound Then
105: Close C_Sel1;
106: --
107: -- The primary key is invalid therefore we must error

Line 114: <> hxc_tcc_shd.g_old_rec.object_version_number) Then

110: fnd_message.raise_error;
111: End If;
112: Close C_Sel1;
113: If (p_object_version_number
114: <> hxc_tcc_shd.g_old_rec.object_version_number) Then
115: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
116: fnd_message.raise_error;
117: End If;
118: l_fct_ret := true;

Line 169: Fetch C_Sel1 Into hxc_tcc_shd.g_old_rec;

165: ,p_argument_value => p_time_category_comp_id
166: );
167: --
168: Open C_Sel1;
169: Fetch C_Sel1 Into hxc_tcc_shd.g_old_rec;
170: If C_Sel1%notfound then
171: Close C_Sel1;
172: --
173: -- The primary key is invalid therefore we must error

Line 180: <> hxc_tcc_shd.g_old_rec.object_version_number) Then

176: fnd_message.raise_error;
177: End If;
178: Close C_Sel1;
179: If (p_object_version_number
180: <> hxc_tcc_shd.g_old_rec.object_version_number) Then
181: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
182: fnd_message.raise_error;
183: End If;
184: --

Line 243: end hxc_tcc_shd;

239: Return(l_rec);
240: --
241: End convert_args;
242: --
243: end hxc_tcc_shd;