DBA Data[Home] [Help]

APPS.PAY_PEU_SHD dependencies on PAY_PEU_SHD

Line 1: Package Body pay_peu_shd as

1: Package Body pay_peu_shd as
2: /* $Header: pypeurhi.pkb 120.0 2005/05/29 07:29:11 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 91: = pay_peu_shd.g_old_rec.event_update_id and

87: --
88: l_fct_ret := false;
89: Else
90: If (p_event_update_id
91: = pay_peu_shd.g_old_rec.event_update_id and
92: p_object_version_number
93: = pay_peu_shd.g_old_rec.object_version_number
94: ) Then
95: --

Line 93: = pay_peu_shd.g_old_rec.object_version_number

89: Else
90: If (p_event_update_id
91: = pay_peu_shd.g_old_rec.event_update_id and
92: p_object_version_number
93: = pay_peu_shd.g_old_rec.object_version_number
94: ) Then
95: --
96: -- The g_old_rec is current therefore we must
97: -- set the returning function to true

Line 105: Fetch C_Sel1 Into pay_peu_shd.g_old_rec;

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

Line 116: <> pay_peu_shd.g_old_rec.object_version_number) Then

112: fnd_message.raise_error;
113: End If;
114: Close C_Sel1;
115: If (p_object_version_number
116: <> pay_peu_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 164: Fetch C_Sel1 Into pay_peu_shd.g_old_rec;

160: ,p_argument_value => p_event_update_id
161: );
162: --
163: Open C_Sel1;
164: Fetch C_Sel1 Into pay_peu_shd.g_old_rec;
165: If C_Sel1%notfound then
166: Close C_Sel1;
167: --
168: -- The primary key is invalid therefore we must error

Line 175: <> pay_peu_shd.g_old_rec.object_version_number) Then

171: fnd_message.raise_error;
172: End If;
173: Close C_Sel1;
174: If (p_object_version_number
175: <> pay_peu_shd.g_old_rec.object_version_number) Then
176: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
177: fnd_message.raise_error;
178: End If;
179: --

Line 233: end pay_peu_shd;

229: Return(l_rec);
230: --
231: End convert_args;
232: --
233: end pay_peu_shd;