DBA Data[Home] [Help]

APPS.HR_TCP_SHD dependencies on HR_TCP_SHD

Line 1: Package Body hr_tcp_shd as

1: Package Body hr_tcp_shd as
2: /* $Header: hrtcprhi.pkb 115.4 2002/12/03 10:02:31 raranjan noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 80: = hr_tcp_shd.g_old_rec.template_item_context_page_id and

76: --
77: l_fct_ret := false;
78: Else
79: If (p_template_item_context_page_i
80: = hr_tcp_shd.g_old_rec.template_item_context_page_id and
81: p_object_version_number
82: = hr_tcp_shd.g_old_rec.object_version_number
83: ) Then
84: --

Line 82: = hr_tcp_shd.g_old_rec.object_version_number

78: Else
79: If (p_template_item_context_page_i
80: = hr_tcp_shd.g_old_rec.template_item_context_page_id and
81: p_object_version_number
82: = hr_tcp_shd.g_old_rec.object_version_number
83: ) Then
84: --
85: -- The g_old_rec is current therefore we must
86: -- set the returning function to true

Line 94: Fetch C_Sel1 Into hr_tcp_shd.g_old_rec;

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

Line 105: <> hr_tcp_shd.g_old_rec.object_version_number) Then

101: fnd_message.raise_error;
102: End If;
103: Close C_Sel1;
104: If (p_object_version_number
105: <> hr_tcp_shd.g_old_rec.object_version_number) Then
106: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
107: fnd_message.raise_error;
108: End If;
109: l_fct_ret := true;

Line 154: Fetch C_Sel1 Into hr_tcp_shd.g_old_rec;

150: ,p_argument_value => p_object_version_number
151: );
152: --Bug:1790746 fix End
153: Open C_Sel1;
154: Fetch C_Sel1 Into hr_tcp_shd.g_old_rec;
155: If C_Sel1%notfound then
156: Close C_Sel1;
157: --
158: -- The primary key is invalid therefore we must error

Line 165: <> hr_tcp_shd.g_old_rec.object_version_number) Then

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

Line 213: end hr_tcp_shd;

209: Return(l_rec);
210: --
211: End convert_args;
212: --
213: end hr_tcp_shd;