DBA Data[Home] [Help]

APPS.HXC_TKG_SHD dependencies on HXC_TKG_SHD

Line 1: Package Body hxc_tkg_shd as

1: Package Body hxc_tkg_shd as
2: /* $Header: hxctkgrhi.pkb 120.2 2005/09/23 05:28:58 rchennur noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 83: = hxc_tkg_shd.g_old_rec.tk_group_id and

79: --
80: l_fct_ret := false;
81: Else
82: If (p_tk_group_id
83: = hxc_tkg_shd.g_old_rec.tk_group_id and
84: p_object_version_number
85: = hxc_tkg_shd.g_old_rec.object_version_number
86: ) Then
87: --

Line 85: = hxc_tkg_shd.g_old_rec.object_version_number

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

Line 97: Fetch C_Sel1 Into hxc_tkg_shd.g_old_rec;

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

Line 108: <> hxc_tkg_shd.g_old_rec.object_version_number) Then

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

Line 156: Fetch C_Sel1 Into hxc_tkg_shd.g_old_rec;

152: ,p_argument_value => p_tk_group_id
153: );
154: --
155: Open C_Sel1;
156: Fetch C_Sel1 Into hxc_tkg_shd.g_old_rec;
157: If C_Sel1%notfound then
158: Close C_Sel1;
159: --
160: -- The primary key is invalid therefore we must error

Line 167: <> hxc_tkg_shd.g_old_rec.object_version_number) Then

163: fnd_message.raise_error;
164: End If;
165: Close C_Sel1;
166: If (p_object_version_number
167: <> hxc_tkg_shd.g_old_rec.object_version_number) Then
168: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
169: fnd_message.raise_error;
170: End If;
171: --

Line 219: end hxc_tkg_shd;

215: Return(l_rec);
216: --
217: End convert_args;
218: --
219: end hxc_tkg_shd;