DBA Data[Home] [Help]

APPS.HXC_RTC_SHD dependencies on HXC_RTC_SHD

Line 1: Package Body hxc_rtc_shd as

1: Package Body hxc_rtc_shd as
2: /* $Header: hxcrtcrhi.pkb 120.2 2005/09/23 08:51:07 nissharm noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 94: = hxc_rtc_shd.g_old_rec.retrieval_rule_comp_id and

90: --
91: l_fct_ret := false;
92: Else
93: If (p_retrieval_rule_comp_id
94: = hxc_rtc_shd.g_old_rec.retrieval_rule_comp_id and
95: p_object_version_number
96: = hxc_rtc_shd.g_old_rec.object_version_number
97: ) Then
98: --

Line 96: = hxc_rtc_shd.g_old_rec.object_version_number

92: Else
93: If (p_retrieval_rule_comp_id
94: = hxc_rtc_shd.g_old_rec.retrieval_rule_comp_id and
95: p_object_version_number
96: = hxc_rtc_shd.g_old_rec.object_version_number
97: ) Then
98: --
99: -- The g_old_rec is current therefore we must
100: -- set the returning function to true

Line 108: Fetch C_Sel1 Into hxc_rtc_shd.g_old_rec;

104: --
105: -- Select the current row into g_old_rec
106: --
107: Open C_Sel1;
108: Fetch C_Sel1 Into hxc_rtc_shd.g_old_rec;
109: If C_Sel1%notfound Then
110: Close C_Sel1;
111: --
112: -- The primary key is invalid therefore we must error

Line 119: <> hxc_rtc_shd.g_old_rec.object_version_number) Then

115: fnd_message.raise_error;
116: End If;
117: Close C_Sel1;
118: If (p_object_version_number
119: <> hxc_rtc_shd.g_old_rec.object_version_number) Then
120: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
121: fnd_message.raise_error;
122: End If;
123: l_fct_ret := true;

Line 168: Fetch C_Sel1 Into hxc_rtc_shd.g_old_rec;

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

Line 179: <> hxc_rtc_shd.g_old_rec.object_version_number) Then

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

Line 231: end hxc_rtc_shd;

227: Return(l_rec);
228: --
229: End convert_args;
230: --
231: end hxc_rtc_shd;