DBA Data[Home] [Help]

APPS.HXC_HTC_SHD dependencies on HXC_HTC_SHD

Line 1: Package Body hxc_htc_shd as

1: Package Body hxc_htc_shd as
2: /* $Header: hxchtcrhi.pkb 120.2.12010000.2 2008/08/05 12:03:17 ubhat ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 85: = hxc_htc_shd.g_old_rec.time_category_id and

81: --
82: l_fct_ret := false;
83: Else
84: If (p_time_category_id
85: = hxc_htc_shd.g_old_rec.time_category_id and
86: p_object_version_number
87: = hxc_htc_shd.g_old_rec.object_version_number
88: ) Then
89: --

Line 87: = hxc_htc_shd.g_old_rec.object_version_number

83: Else
84: If (p_time_category_id
85: = hxc_htc_shd.g_old_rec.time_category_id and
86: p_object_version_number
87: = hxc_htc_shd.g_old_rec.object_version_number
88: ) Then
89: --
90: -- The g_old_rec is current therefore we must
91: -- set the returning function to true

Line 99: Fetch C_Sel1 Into hxc_htc_shd.g_old_rec;

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

Line 110: <> hxc_htc_shd.g_old_rec.object_version_number) Then

106: fnd_message.raise_error;
107: End If;
108: Close C_Sel1;
109: If (p_object_version_number
110: <> hxc_htc_shd.g_old_rec.object_version_number) Then
111: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
112: fnd_message.raise_error;
113: End If;
114: l_fct_ret := true;

Line 160: Fetch C_Sel1 Into hxc_htc_shd.g_old_rec;

156: ,p_argument_value => p_time_category_id
157: );
158: --
159: Open C_Sel1;
160: Fetch C_Sel1 Into hxc_htc_shd.g_old_rec;
161: If C_Sel1%notfound then
162: Close C_Sel1;
163: --
164: -- The primary key is invalid therefore we must error

Line 171: <> hxc_htc_shd.g_old_rec.object_version_number) Then

167: fnd_message.raise_error;
168: End If;
169: Close C_Sel1;
170: If (p_object_version_number
171: <> hxc_htc_shd.g_old_rec.object_version_number) Then
172: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
173: fnd_message.raise_error;
174: End If;
175: --

Line 225: end hxc_htc_shd;

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