DBA Data[Home] [Help]

APPS.HXC_HRR_SHD dependencies on HXC_HRR_SHD

Line 1: Package Body hxc_hrr_shd as

1: Package Body hxc_hrr_shd as
2: /* $Header: hxchrrrhi.pkb 120.3 2005/09/23 10:43:47 sechandr noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 84: = hxc_hrr_shd.g_old_rec.resource_rule_id and

80: --
81: l_fct_ret := false;
82: Else
83: If (p_resource_rule_id
84: = hxc_hrr_shd.g_old_rec.resource_rule_id and
85: p_object_version_number
86: = hxc_hrr_shd.g_old_rec.object_version_number
87: ) Then
88: --

Line 86: = hxc_hrr_shd.g_old_rec.object_version_number

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

Line 98: Fetch C_Sel1 Into hxc_hrr_shd.g_old_rec;

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

Line 109: <> hxc_hrr_shd.g_old_rec.object_version_number) Then

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

Line 164: Fetch C_Sel1 Into hxc_hrr_shd.g_old_rec;

160: ,p_argument_value => p_resource_rule_id
161: );
162: --
163: Open C_Sel1;
164: Fetch C_Sel1 Into hxc_hrr_shd.g_old_rec;
165: If C_Sel1%notfound then
166: Close C_Sel1;
167: --
168: -- The primary key is invalid therefore we must error

Line 175: <> hxc_hrr_shd.g_old_rec.object_version_number) Then

171: fnd_message.raise_error;
172: End If;
173: Close C_Sel1;
174: If (p_object_version_number
175: <> hxc_hrr_shd.g_old_rec.object_version_number) Then
176: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
177: fnd_message.raise_error;
178: End If;
179: --

Line 241: end hxc_hrr_shd;

237: Return(l_rec);
238: --
239: End convert_args;
240: --
241: end hxc_hrr_shd;