DBA Data[Home] [Help]

APPS.PAY_PUT_SHD dependencies on PAY_PUT_SHD

Line 1: Package Body pay_put_shd as

1: Package Body pay_put_shd as
2: /* $Header: pyputrhi.pkb 115.0 2003/09/23 08:07 tvankayl noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_put_shd.'; -- Global package name
9: --
10: -- The following two global variables are only to be used
11: -- by the chk_compatible_startup_mode function.
12: --

Line 168: = pay_put_shd.g_old_rec.user_table_id and

164: --
165: l_fct_ret := false;
166: Else
167: If (p_user_table_id
168: = pay_put_shd.g_old_rec.user_table_id and
169: p_object_version_number
170: = pay_put_shd.g_old_rec.object_version_number
171: ) Then
172: --

Line 170: = pay_put_shd.g_old_rec.object_version_number

166: Else
167: If (p_user_table_id
168: = pay_put_shd.g_old_rec.user_table_id and
169: p_object_version_number
170: = pay_put_shd.g_old_rec.object_version_number
171: ) Then
172: --
173: -- The g_old_rec is current therefore we must
174: -- set the returning function to true

Line 182: Fetch C_Sel1 Into pay_put_shd.g_old_rec;

178: --
179: -- Select the current row into g_old_rec
180: --
181: Open C_Sel1;
182: Fetch C_Sel1 Into pay_put_shd.g_old_rec;
183: If C_Sel1%notfound Then
184: Close C_Sel1;
185: --
186: -- The primary key is invalid therefore we must error

Line 193: <> pay_put_shd.g_old_rec.object_version_number) Then

189: fnd_message.raise_error;
190: End If;
191: Close C_Sel1;
192: If (p_object_version_number
193: <> pay_put_shd.g_old_rec.object_version_number) Then
194: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
195: fnd_message.raise_error;
196: End If;
197: l_fct_ret := true;

Line 246: Fetch C_Sel1 Into pay_put_shd.g_old_rec;

242: ,p_argument_value => p_object_version_number
243: );
244: --
245: Open C_Sel1;
246: Fetch C_Sel1 Into pay_put_shd.g_old_rec;
247: If C_Sel1%notfound then
248: Close C_Sel1;
249: --
250: -- The primary key is invalid therefore we must error

Line 257: <> pay_put_shd.g_old_rec.object_version_number) Then

253: fnd_message.raise_error;
254: End If;
255: Close C_Sel1;
256: If (p_object_version_number
257: <> pay_put_shd.g_old_rec.object_version_number) Then
258: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
259: fnd_message.raise_error;
260: End If;
261: --

Line 313: end pay_put_shd;

309: Return(l_rec);
310: --
311: End convert_args;
312: --
313: end pay_put_shd;