DBA Data[Home] [Help]

APPS.HR_TIS_SHD dependencies on HR_TIS_SHD

Line 1: Package Body hr_tis_shd as

1: Package Body hr_tis_shd as
2: /* $Header: hrtisrhi.pkb 120.3 2008/02/25 13:24:06 avarri ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 93: If (p_topic_integrations_id = hr_tis_shd.g_old_rec.topic_integrations_id and

89: -- set the returning function value to false
90: --
91: l_fct_ret := false;
92: Else
93: If (p_topic_integrations_id = hr_tis_shd.g_old_rec.topic_integrations_id and
94: p_object_version_number = hr_tis_shd.g_old_rec.object_version_number
95: ) Then
96: --
97: -- The g_old_rec is current therefore we must

Line 94: p_object_version_number = hr_tis_shd.g_old_rec.object_version_number

90: --
91: l_fct_ret := false;
92: Else
93: If (p_topic_integrations_id = hr_tis_shd.g_old_rec.topic_integrations_id and
94: p_object_version_number = hr_tis_shd.g_old_rec.object_version_number
95: ) Then
96: --
97: -- The g_old_rec is current therefore we must
98: -- set the returning function to true

Line 106: Fetch C_Sel1 Into hr_tis_shd.g_old_rec;

102: --
103: -- Select the current row into g_old_rec
104: --
105: Open C_Sel1;
106: Fetch C_Sel1 Into hr_tis_shd.g_old_rec;
107: If C_Sel1%notfound Then
108: Close C_Sel1;
109: --
110: -- The primary key is invalid therefore we must error

Line 116: If (p_object_version_number <> hr_tis_shd.g_old_rec.object_version_number) Then

112: fnd_message.set_name('PAY', 'HR_7220_INVALID_PRIMARY_KEY');
113: fnd_message.raise_error;
114: End If;
115: Close C_Sel1;
116: If (p_object_version_number <> hr_tis_shd.g_old_rec.object_version_number) Then
117: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
118: fnd_message.raise_error;
119: End If;
120: l_fct_ret := true;

Line 184: Fetch C_Sel1 Into hr_tis_shd.g_old_rec;

180: ,p_argument_value => p_object_version_number
181: );
182: --
183: Open C_Sel1;
184: Fetch C_Sel1 Into hr_tis_shd.g_old_rec;
185: If C_Sel1%notfound then
186: Close C_Sel1;
187: --
188: -- The primary key is invalid therefore we must error

Line 194: If (p_object_version_number <> hr_tis_shd.g_old_rec.object_version_number) Then

190: fnd_message.set_name('PAY', 'HR_7220_INVALID_PRIMARY_KEY');
191: fnd_message.raise_error;
192: End If;
193: Close C_Sel1;
194: If (p_object_version_number <> hr_tis_shd.g_old_rec.object_version_number) Then
195: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
196: fnd_message.raise_error;
197: End If;
198: --

Line 282: end hr_tis_shd;

278: Return(l_rec);
279: --
280: End convert_args;
281: --
282: end hr_tis_shd;