DBA Data[Home] [Help]

APPS.PAY_ITR_SHD dependencies on PAY_ITR_SHD

Line 1: Package Body pay_itr_shd as

1: Package Body pay_itr_shd as
2: /* $Header: pyitrrhi.pkb 115.6 2002/12/16 17:48:51 dsaxby noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 93: pay_itr_shd.g_old_rec.iterative_rule_id and

89: --
90: l_fct_ret := false;
91: Else
92: If (p_iterative_rule_id =
93: pay_itr_shd.g_old_rec.iterative_rule_id and
94: p_object_version_number =
95: pay_itr_shd.g_old_rec.object_version_number) Then
96: --
97: -- The g_old_rec is current therefore we must

Line 95: pay_itr_shd.g_old_rec.object_version_number) Then

91: Else
92: If (p_iterative_rule_id =
93: pay_itr_shd.g_old_rec.iterative_rule_id and
94: p_object_version_number =
95: pay_itr_shd.g_old_rec.object_version_number) Then
96: --
97: -- The g_old_rec is current therefore we must
98: -- set the returning function to true
99: --

Line 106: Fetch C_Sel1 Into pay_itr_shd.g_old_rec;

102: --
103: -- Select the current row
104: --
105: Open C_Sel1;
106: Fetch C_Sel1 Into pay_itr_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 117: <> pay_itr_shd.g_old_rec.object_version_number) Then

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

Line 315: Fetch C_Sel1 Into pay_itr_shd.g_old_rec;

311: --
312: -- We must select and lock the current row.
313: --
314: Open C_Sel1;
315: Fetch C_Sel1 Into pay_itr_shd.g_old_rec;
316: If C_Sel1%notfound then
317: Close C_Sel1;
318: --
319: -- The primary key is invalid therefore we must error

Line 326: <> pay_itr_shd.g_old_rec.object_version_number) Then

322: fnd_message.raise_error;
323: End If;
324: Close C_Sel1;
325: If (p_object_version_number
326: <> pay_itr_shd.g_old_rec.object_version_number) Then
327: fnd_message.set_name(801, 'HR_7155_OBJECT_INVALID');
328: fnd_message.raise_error;
329: End If;
330: --

Line 419: end pay_itr_shd;

415: Return(l_rec);
416: --
417: End convert_args;
418: --
419: end pay_itr_shd;