DBA Data[Home] [Help]

APPS.HXC_HRP_SHD dependencies on HXC_HRP_SHD

Line 1: Package Body hxc_hrp_shd as

1: Package Body hxc_hrp_shd as
2: /* $Header: hxchrprhi.pkb 120.2 2005/09/23 10:43:21 sechandr noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 74: = hxc_hrp_shd.g_old_rec.recurring_period_id and

70: --
71: l_fct_ret := false;
72: Else
73: If (p_recurring_period_id
74: = hxc_hrp_shd.g_old_rec.recurring_period_id and
75: p_object_version_number
76: = hxc_hrp_shd.g_old_rec.object_version_number
77: ) Then
78: --

Line 76: = hxc_hrp_shd.g_old_rec.object_version_number

72: Else
73: If (p_recurring_period_id
74: = hxc_hrp_shd.g_old_rec.recurring_period_id and
75: p_object_version_number
76: = hxc_hrp_shd.g_old_rec.object_version_number
77: ) Then
78: --
79: -- The g_old_rec is current therefore we must
80: -- set the returning function to true

Line 88: Fetch C_Sel1 Into hxc_hrp_shd.g_old_rec;

84: --
85: -- Select the current row into g_old_rec
86: --
87: Open C_Sel1;
88: Fetch C_Sel1 Into hxc_hrp_shd.g_old_rec;
89: If C_Sel1%notfound Then
90: Close C_Sel1;
91: --
92: -- The primary key is invalid therefore we must error

Line 99: <> hxc_hrp_shd.g_old_rec.object_version_number) Then

95: fnd_message.raise_error;
96: End If;
97: Close C_Sel1;
98: If (p_object_version_number
99: <> hxc_hrp_shd.g_old_rec.object_version_number) Then
100: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
101: fnd_message.raise_error;
102: End If;
103: l_fct_ret := true;

Line 149: Fetch C_Sel1 Into hxc_hrp_shd.g_old_rec;

145: ,p_argument_value => p_recurring_period_id
146: );
147: --
148: Open C_Sel1;
149: Fetch C_Sel1 Into hxc_hrp_shd.g_old_rec;
150: If C_Sel1%notfound then
151: Close C_Sel1;
152: --
153: -- The primary key is invalid therefore we must error

Line 160: <> hxc_hrp_shd.g_old_rec.object_version_number) Then

156: fnd_message.raise_error;
157: End If;
158: Close C_Sel1;
159: If (p_object_version_number
160: <> hxc_hrp_shd.g_old_rec.object_version_number) Then
161: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
162: fnd_message.raise_error;
163: End If;
164: --

Line 216: end hxc_hrp_shd;

212: Return(l_rec);
213: --
214: End convert_args;
215: --
216: end hxc_hrp_shd;