DBA Data[Home] [Help]

APPS.HXC_ULP_SHD dependencies on HXC_ULP_SHD

Line 1: Package Body hxc_ulp_shd as

1: Package Body hxc_ulp_shd as
2: /* $Header: hxculprhi.pkb 120.2 2005/09/23 09:52:13 rchennur noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 86: = hxc_ulp_shd.g_old_rec.layout_comp_prompt_id and

82: --
83: l_fct_ret := false;
84: Else
85: If (p_layout_comp_prompt_id
86: = hxc_ulp_shd.g_old_rec.layout_comp_prompt_id and
87: p_object_version_number
88: = hxc_ulp_shd.g_old_rec.object_version_number
89: ) Then
90: --

Line 88: = hxc_ulp_shd.g_old_rec.object_version_number

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

Line 100: Fetch C_Sel1 Into hxc_ulp_shd.g_old_rec;

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

Line 111: <> hxc_ulp_shd.g_old_rec.object_version_number) Then

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

Line 163: Fetch C_Sel1 Into hxc_ulp_shd.g_old_rec;

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

Line 174: <> hxc_ulp_shd.g_old_rec.object_version_number) Then

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

Line 234: end hxc_ulp_shd;

230: Return(l_rec);
231: --
232: End convert_args;
233: --
234: end hxc_ulp_shd;